-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
44 lines (44 loc) · 1.57 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
{
"private": true,
"scripts": {
"test": "istanbul cover _mocha -- --opts test/mocha.opts --timeout 20000 --bail 'packages/**/test/*-spec.js'",
"test:one": "DEBUG=core-* _mocha --opts test/mocha.opts --bail --timeout 20000",
"ci-test": "DEBUG=core-* istanbul cover _mocha -- --opts test/mocha.opts --bail --timeout 20000 'packages/**/test/*-spec.js' && codecov",
"ci-eslint": "eslint -o eslint.json -f json ./",
"lint": "eslint --fix ./",
"doc": "jsdoc -c conf.json ./node_modules/ink-docstrap/template -R README.md -r",
"contributors": "./node_modules/.bin/contributors",
"postinstall": "./node_modules/.bin/lerna bootstrap",
"clear": "node scripts/clear.js",
"link": "cd packages/fie-core && npm link",
"link-lzd": "cd packages/lzd-core && npm link",
"publish-tnpm": "node scripts/publishTnpm.js",
"publish-lzd": "node scripts/publishTnpmForLzd.js",
"prettier": "./node_modules/prettier/bin/prettier.js --parser flow --write \"**/*.{js,jsx}\""
},
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"codecov": "^1.0.1",
"contributors": "^0.5.1",
"eslint": "^3.8.1",
"eslint-config-ais": "0.0.16",
"fs-extra": "^1.0.0",
"globby": "^6.1.0",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.4",
"jsdoc": "^3.4.2",
"lerna": "^2.0.0-beta.38",
"mocha": "^3.1.2",
"mocha-sinon": "^2.0.0",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"supertest": "^2.0.1",
"prettier": "1.9.2"
},
"engine": {
"node": ">4.2.1"
},
"dependencies": {}
}