-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 KB
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
{
"name": "itaas-nodejs-tools",
"version": "7.5.0",
"private": true,
"description": "Node.js tools",
"main": "./lib/index.js",
"bin": {
"license": "./lib/cmd/license-cmd.js"
},
"scripts": {
"test": "mocha --recursive -c --timeout 10000 test",
"test-debug": "mocha --recursive -c --debug-brk=5858 test",
"lint": "eslint .",
"coverage": "nyc npm run test && npm run coverage:report",
"coverage:report": "nyc report --reporter=lcov --reporter=text --report-dir",
"nodemon": "nodemon --exec \"npm run lint && npm run coverage\"",
"test-unit": "mocha --timeout 10000 --recursive -c test/unit",
"license": "node lib/cmd/license-cmd.js",
"precommit": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/agilecontent/itaas-nodejs-tools.git"
},
"bugs": {
"url": "https://github.com/agilecontent/itaas-nodejs-tools/issues"
},
"keywords": [
"node",
"nodejs",
"tools",
"itaas"
],
"dependencies": {
"commander": "^2.9.0",
"license-checker": "^8.0.3",
"minimist": "^1.2.6",
"mkdirp": "^1.0.4",
"moment": "^2.29.4",
"morgan": "1.10.0",
"nyc": "^15.1.0",
"request": "^2.81.0",
"uuid": "2.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^8.2.0",
"express": "^4.17.1",
"husky": "0.14.3",
"intercept-stdout": "^0.1.2",
"mocha": "^9.1.3",
"nock": "^13.2.1",
"nodemon": "^2.0.15",
"should": "^9.0.1"
},
"author": "iTaaS",
"license": "ISC",
"homepage": "https://github.com/agilecontent/itaas-nodejs-tools#readme"
}