-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.5 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
{
"name": "project-name-goes-here",
"version": "1.0.0",
"description": "terse description goes here",
"main": "index.js",
"scripts": {
"coverage": "JUNIT_REPORT_PATH=report.xml JUNIT_REPORT_STACK=1 istanbul cover -x 'index.test.js' _mocha -- --reporter mocha-jenkins-reporter 'index.test.js'",
"lint": "gulp lint",
"lint:live": "gulp lint-watch --cont=true",
"test:live": "mocha -R spec --recursive -w 'index.test.js'",
"test": "mocha 'index.test.js'",
"test:integration": "mocha '**/*.integration.test.js'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/BobbieBarker/nice-error.git"
},
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.9.1",
"eslint-config-mindflash": "git+ssh://[email protected]:Mindflash/eslint-config.git",
"eslint-plugin-import": "^1.10.2",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.0",
"gulp-chmod": "^1.3.0",
"gulp-cli": "^1.2.1",
"gulp-eslint": "^3.0.1",
"gulp-if": "^2.0.1",
"gulp-rename": "^1.2.2",
"istanbul": "^0.4.2",
"mocha": "^2.5.3",
"mocha-jenkins-reporter": "^0.2.2",
"nock": "^8.0.0",
"proxyquire": "^1.7.10",
"sinon": "^1.17.4",
"sinon-as-promised": "^3.0.1",
"sinon-chai": "^2.8.0",
"yargs": "^4.8.1"
},
"dependencies": {
"nice-request": "^1.0.1"
},
"license": "MIT",
"homepage": "https://github.com/BobbieBarker/nice-error.git#readme",
"engines": {
"node": ">=4.0.0"
}
}