-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
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
{
"name": "rules",
"version": "0.0.1",
"description": "A simple rules engine: you can specify the conditions under which the rules should trigger, and the actions to take.",
"license": "MIT",
"repository": "http://github.com/TNOCS/csWeb-rules",
"author": "Erik Vullings <erik.vullings@gmail.com>",
"keywords": [
"Rules engine"
],
"files": [
"lib"
],
"scripts": {
"test": "gulp test",
"tsc": "tsc -w",
"watch": "gulp && tsc -w",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"bin": {
"rules": "./bin/run.js"
},
"dependencies": {
"command-line-usage": "^3.0.3",
"hypertimer": "^2.1.3",
"turf": "^3.0.11",
"winston": "^2.2.0",
"snyk": "^1.25.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"del": "2.0.2",
"gulp": "^3.9.1",
"gulp-help": "^1.6.0",
"gulp-inject": "3.0.0",
"gulp-jasmine": "^2.3.0",
"gulp-sequence": "0.4.1",
"gulp-tsconfig-files": "0.0.2",
"gulp-tslint": "^3.1",
"jasmine": "^2.4",
"karma": "^0.13.21",
"karma-browserify": "^5.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"node-gyp": "^3.4.0",
"typescript": "^2.0.2",
"watchify": "^3.7.0"
},
"engines": {
"node": ">=0.12.0"
},
"snyk": true
}