forked from danrspencer/jira-resource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.87 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
{
"name": "jira-resource",
"version": "1.0.0",
"description": "Jira ticket resource for concourse ci",
"main": "out.js",
"scripts": {
"precommit": "pretty-quick --staged",
"test": "node node_modules/mocha/bin/mocha ./spec/ --async-only",
"test-watch": "node node_modules/mocha/bin/mocha ./spec/ --async-only --watch --growl",
"test-watch-debug": "DEBUG=jira-resource node node_modules/mocha/bin/mocha ./spec/ --async-only --watch --growl",
"test-report": "node node_modules/mocha/bin/mocha ./spec/ --async-only --reporter mocha-junit-reporter --reporter-options mochaFile=reports/junit/mocha.xml",
"test-report-html": "node node_modules/mocha/bin/mocha ./spec/ --async-only --reporter mocha-simple-html-reporter --reporter-options output=reports/mocha.html",
"test-report-coverage": "node ./node_modules/.bin/istanbul cover --report clover --dir reports/coverage src/*.js",
"test-with-coverage": "node ./node_modules/.bin/istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danrspencer/jira-resource.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danrspencer/jira-resource/issues"
},
"homepage": "https://github.com/danrspencer/jira-resource#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha-simple-html-reporter": "^1.1.0",
"nock": "^9.2.6",
"prettier": "^1.13.4",
"pretty-quick": "^1.6.0",
"request-debug": "^0.2.0"
},
"dependencies": {
"async": "^2.0.0-rc.6",
"debug": "^2.2.0",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"request": "^2.72.0"
}
}