-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.81 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
{
"name": "singapur",
"version": "1.0.4",
"description": "a sync & async rule engine in typescript",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"postinstall": "npm run typings && npm run build",
"pretest": "npm run build",
"test": "npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test:local": "NODE_ENV='test' _mocha './dist/test/index.js' -c --inline-diffs --reporter 'spec' --ui 'bdd'",
"test:watch": "npm run test:local -- --watch",
"test:coverage": "NODE_ENV='test' istanbul --include-all-sources cover _mocha ./dist/test/index.js",
"start": "node ./dist",
"build": "tsc -p .",
"clean": "rimraf ./dist",
"prewatch": "npm run clean",
"watch": " npm run build -- --strictNullChecks --noImplicitThis --noUnusedParameters --noUnusedLocals --pretty -w",
"watch:serve": "nodemon -L --exec 'npm run start' ./dist",
"typings": "typings install",
"playground": "webpack --config ./src/examples/Game/webpack.config.js",
"playground:dev": "npm run playground -- --w",
"playground:serve": "nodemon -L --exec 'node ./dist/examples/Game/server.js' ./dist/examples/Game/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/GauSim/rule-engine.git"
},
"devDependencies": {
"coveralls": "^2.11.9",
"immutable": "^3.8.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"nodemon": "^1.9.1",
"rimraf": "^2.5.2",
"should": "^8.3.0",
"ts-loader": "^0.8.2",
"typescript": "^2.1.0-dev.20160714",
"typings": "^0.7.9",
"webpack": "^1.13.0"
},
"dependencies": {
"deep-equal": "^1.0.1",
"underscore": "^1.8.3"
},
"author": "[email protected]",
"license": "ISC"
}