-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.12 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
{
"name": "@criticalmanufacturing/training-simulator-erp",
"version": "1.0.1",
"description": "Critical Manufacturing Training ERP Simulator",
"main": "src/index.js",
"bin": {
"cmf-simulator-erp": "./bin/run.js"
},
"scripts": {
"build": "node node_modules/typescript/bin/tsc",
"start": "npm run build && node node_modules/nodemon/bin/nodemon src/index.js --ignore test/",
"test": "node node_modules/mocha/bin/mocha test/**/*.js test/*.js --timeout 5000",
"cover": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha test/**/*.js test/*.js",
"coveralls": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha --report lcovonly test/**/*.js test/*.js -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"vs:buildAndTest": "npm run build && npm run vs:test",
"vs:test": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha --report cobertura --report lcov test/*.js test/**/*.js -- --timeout 5000 --reporter mocha-junit-reporter --reporter-options mochaFile=./test/test-results.xml",
"pretest": "npm run build",
"watch": "npm run build -- -w | node node_modules/mocha/bin/mocha --timeout 5000 --reporter min -w test/*.js test/**/*.js"
},
"author": "Critical Manufacturing <contact@criticalmanufacturing.com>",
"license": "GPL-3.0",
"dependencies": {
"restify": "^4.3.0",
"restify-router": "^0.4.2",
"yargs": "^7.1.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-http": "0.0.30",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.12",
"@types/restify": "^2.0.42",
"@types/yargs": "^6.6.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.11.0",
"tslint": "^4.4.2",
"typescript": "^2.2.2"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/criticalmanufacturing/training-simulator-erp.git"
},
"publishConfig": {
"access": "public"
}
}