forked from ewise-systems/aegisJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.41 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@ewise/aegisjs",
"version": "0.1.12",
"description": "Open source library for interacting with eWise Systems' Aegis 2.0 architecture",
"main": "src/aegis.js",
"scripts": {
"demo-app": "npm run build && node demo-app/testApp.js",
"prepare": "npm run build",
"clean": "rimraf dist .nyc_output coverage coverage_unit coverage_integration mocha_unit_test_results.xml mocha_integration_test_results.xml",
"lint": "jshint .",
"test": "npm run test:u && npm run test:i",
"test:unit": "nyc --reporter text mocha --recursive test/unit",
"test:u": "npm run test:unit",
"pretest:integration": "pm2 -s start mountebank",
"test:integration": "nyc --reporter text mocha --recursive test/integration",
"posttest:integration": "pm2 -s stop mountebank",
"test:i": "npm run test:integration",
"bundle": "webpack --config webpack.config.js",
"prebuild": "npm run clean",
"build": "npm run lint && npm test && npm run bundle -- --mode=production",
"preartifice": "npm run clean",
"artifice:unit": "npm run test:unit -- -- --reporter=xunit --reporter-options output=mocha_unit_test_results.xml && nyc report --report-dir coverage_unit",
"artifice:u": "npm run artifice:unit",
"artifice:integration": "npm run test:integration -- -- --reporter=xunit --reporter-options output=mocha_integration_test_results.xml && nyc report --report-dir coverage_integration",
"artifice:i": "npm run artifice:integration",
"artifice": "npm run lint && npm run artifice:unit && npm run artifice:integration"
},
"keywords": [
"ewise",
"aegis"
],
"author": "Rene Calunsag Jr",
"license": "MIT",
"devDependencies": {
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cors": "^2.8.5",
"covgen": "^3.1.0",
"express": "^4.16.4",
"fast-check": "^1.15.1",
"folktale": "^2.3.2",
"jshint": "^2.10.2",
"lodash": "^4.17.14",
"mocha": "^6.2.0",
"mountebank": "^2.1.0",
"node-fetch": "^2.6.0",
"nyc": "^14.0.0",
"pm2": "^3.5.1",
"sinon": "^7.4.0",
"source-map-support": "^0.5.12",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"@ewise/aegisjs-core": "^0.1.10",
"@ewise/aegisjs-ota": "^0.1.3",
"ramda": "^0.26.1",
"rimraf": "^2.6.3",
"uniqid": "^5.0.3"
},
"repository": {
"type": "git",
"url": "[email protected]:ewise-systems/aegisJS.git"
},
"files": [
"src/"
]
}