forked from CacheControl/json-rules-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
69
70
71
72
73
{
"name": "@iflix/json-rules-engine",
"version": "4.1.0",
"description": "Rules Engine expressed in simple json",
"main": "dist/index.js",
"scripts": {
"test": "mocha && npm run lint --silent",
"lint": "standard --verbose | snazzy || true",
"lint:fix": "standard --fix",
"prepublishOnly": "npm run build",
"build": "babel --stage 1 -d dist/ src/"
},
"repository": {
"type": "git",
"url": "https://github.com/iflix-letsplay/json-rules-engine"
},
"keywords": [
"rules",
"engine",
"rules engine"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist"
],
"globals": [
"context",
"xcontext",
"describe",
"xdescribe",
"it",
"xit",
"before",
"beforeEach",
"expect",
"factories"
]
},
"author": "Cache Hamm <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cachecontrol/json-rules-engine/issues"
},
"homepage": "https://github.com/cachecontrol/json-rules-engine",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.2",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"babel-register": "6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"colors": "~1.1.2",
"dirty-chai": "2.0.1",
"mocha": "^5.0.5",
"perfy": "^1.1.2",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
},
"dependencies": {
"clone": "^2.1.1",
"debug": "^3.1.0",
"lodash.isobjectlike": "^4.0.0",
"object-hash": "^1.2.0",
"selectn": "^1.1.2"
}
}