-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
49 lines (49 loc) · 1.58 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"private": true,
"devDependencies": {
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.1",
"gh-pages": "^1.1.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^9.1.0",
"lerna": "^2.11.0",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"mochify": "^5.6.1",
"nyc": "^11.8.0",
"prettier": "^1.12.1",
"showdown": "^1.8.6",
"sinon": "^5.0.7"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"lint": "lerna exec yarn lint",
"pretest": "yarn lint",
"test:node:coverage": "nyc --report-dir build/coverage/ --reporter=html --reporter=text lerna exec yarn test:node",
"test:browser": "lerna exec yarn test:browser",
"test": "yarn test:node:coverage && yarn test:browser",
"format": "lerna exec yarn format",
"clean": "rm -fr build && lerna exec yarn clean",
"generate-docs": "./scripts/generate-docs.sh",
"deploy-docs": "gh-pages -d build/docs",
"travis-deploy-github-pages": "gh-pages -r \"https://${GH_TOKEN}@github.com/yaorg/node-measured.git\" -d build/docs",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"url": "git://github.com/yaorg/node-measured.git"
},
"homepage": "https://yaorg.github.io/node-measured/",
"license": "MIT",
"workspaces": [
"packages/*"
]
}