forked from badges/daily-tests
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
23 lines (23 loc) · 936 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "daily-tests",
"repository": "badges/daily-tests",
"private": true,
"version": "0.1.0",
"description": "Daily tests for the Shields.io server",
"scripts": {
"install-shields:0-clean": "rimraf shields",
"install-shields:1-clone": "git clone --depth 1 https://github.com/badges/shields.git",
"install-shields:2-install": "cd shields && npm ci",
"install-shields": "run-s install-shields:*",
"coverage:test": "cd shields && npm run coverage:test",
"coverage:services": "cd shields && npm run coverage:test:services",
"coveralls": "cd shields && node_modules/.bin/nyc report --reporter=text-lcov | CIRCLE_SHA1=$(git rev-parse --verify HEAD) ../node_modules/.bin/coveralls",
"test": "run-s install-shields coverage:test coverage:services coveralls"
},
"license": "CC0-1.0",
"devDependencies": {
"coveralls": "^3.0.11",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}