This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "code-interview",
"version": "0.0.0",
"description": "Autovance code interview questions",
"keywords": [
"autovance",
"code",
"interview",
"test"
],
"homepage": "autovance.com",
"license": "MIT",
"author": {
"name": "Matt Forster",
"email": "matt@autovance.com"
},
"main": "lib/index.js",
"repository": {
"url": "git@github.com:autovance/code-interview"
},
"scripts": {
"build": "cross-env NODE_ENV=production npm run clean:prod",
"clean:prod": "rimraf dist/",
"commitmsg": "cz-customizable-ghooks",
"dev": "cross-env NODE_ENV=development npm run verify:watch",
"release": "npm-run-all verify test:coverage build ",
"start": "npm run dev",
"test": "echo 'Error! Please specify the test set that you wish to test. `npm run test:set-*`'",
"test:check-coverage": "cross-env NODE_ENV=test istanbul check-coverage reports/coverage/coverage.json --config config/testUnit/istanbul.js",
"test:coverage": "npm-run-all test:unit:once test:check-coverage --silent",
"test:unit": "chokidar 'lib/**/*.js' 'test/**/*.js' -c 'npm run test:unit:once' --initial --silent",
"test:unit:once": "cross-env NODE_ENV=test istanbul cover --config config/testUnit/istanbul.js _mocha -- --opts config/testUnit/mocha.opts",
"verify": "npm run verify:js --silent",
"verify:js": "eslint -c config/verify/.eslintrc \"lib/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js success",
"verify:js:fix": "eslint --fix -c config/verify/.eslintrc \"lib/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js:fix success",
"verify:js:watch": "chokidar 'lib/**/*.js' 'test/**/*.js' 'config/**/*.js' -c 'npm run verify:js:fix' --initial --silent",
"verify:watch": "npm run verify:js:watch --silent",
"test:set-1": "cross-env NODE_ENV=test istanbul cover --config config/testUnit/istanbul.js _mocha -- --opts config/testUnit/set-1/mocha.opts",
"test:set-2": "cross-env NODE_ENV=test istanbul cover --config config/testUnit/istanbul.js _mocha -- --opts config/testUnit/set-2/mocha.opts"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/release/commitMessageConfig.js"
}
},
"dependencies": {
"chai": "^3.5.0",
"eslint": "^2.10.1",
"eslint-plugin-mocha": "^2.2.0",
"lodash": "^4.11.1",
"mocha": "3.2.0",
"when": "^3.7.8"
},
"devDependencies": {
"chokidar-cli": "1.2.0",
"cross-env": "3.1.4",
"cz-customizable": "4.0.0",
"cz-customizable-ghooks": "1.5.0",
"del": "^2.0.2",
"eslint": "3.14.1",
"eslint-config-xo-space": "^0.12.0",
"eslint-plugin-node": "3.0.5",
"husky": "0.13.1",
"isparta": "^3.0.3",
"istanbul": "0.4.5",
"npm-run-all": "4.0.1",
"rimraf": "2.5.4",
"sinon": "^2.1.0",
"sinon-as-promised": "^4.0.3",
"sleep-promise": "^2.0.0"
}
}