-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 838 Bytes
/
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
{
"name": "rules-engine",
"version": "1.0.0",
"description": "Rules engine implemented in Node.js",
"main": "app.js",
"scripts": {
"start": "node ./start-service.js",
"dev": "DEBUG=express:* node start-service.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samirketema/node-rules-engine.git"
},
"author": "Samir Ketema",
"license": "ISC",
"bugs": {
"url": "https://github.com/samirketema/node-rules-engine/issues"
},
"homepage": "https://github.com/samirketema/node-rules-engine#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"lodash": "^4.17.4",
"underscore": "^1.8.3",
"use-strict": "^1.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1",
"supertest": "^3.0.0"
}
}