forked from IBM/message-catalog-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "message-catalog-manager",
"version": "2.2.2",
"description": "message catalog manager",
"engines": {
"node": ">=4.4",
"npm": ">=3.x"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM/message-catalog-manager"
},
"scripts": {
"pretest": "npm run lint",
"test": "node ./node_modules/istanbul/lib/cli.js cover --report cobertura --report html ./node_modules/mocha/bin/_mocha -- \"test/**/*.js\"",
"posttest": "istanbul check-coverage -statement 100 -branch 100 -function 100 -line 100",
"lint": "eslint .",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"fs": "0.0.2",
"underscore": "^1.8.3"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.19.0",
"express": "^4.15.3",
"istanbul": "^0.4.5",
"mocha": "^5.0.4",
"node-mocks-http": "^1.6.4",
"sinon": "^4.4.6",
"sinon-chai": "^3.0.0"
},
"readmeFilename": "README.md"
}