-
Notifications
You must be signed in to change notification settings - Fork 475
/
package.json
97 lines (97 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "json-rules-engine",
"version": "7.1.0",
"description": "Rules Engine expressed in simple json",
"main": "dist/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "mocha && npm run lint --silent && npm run test:types",
"test:types": "tsd",
"lint": "standard --verbose --env mocha | snazzy || true",
"lint:fix": "standard --fix --env mocha",
"prepublishOnly": "npm run build",
"build": "babel --stage 1 -d dist/ src/",
"watch": "babel --watch --stage 1 -d dist/ src",
"examples": "./test/support/example_runner.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/cachecontrol/json-rules-engine"
},
"keywords": [
"rules",
"engine",
"rules engine"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist",
"/examples/node_modules"
],
"globals": [
"context",
"xcontext",
"describe",
"xdescribe",
"it",
"xit",
"before",
"beforeEach",
"expect",
"factories"
]
},
"mocha": {
"require": [
"babel-core/register",
"babel-polyfill"
],
"file": "./test/support/bootstrap.js",
"checkLeaks": true,
"recursive": true,
"globals": [
"expect"
]
},
"author": "Cache Hamm <[email protected]>",
"contributors": [
"Chris Pardy <[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.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.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.3.4",
"chai-as-promised": "^7.1.1",
"colors": "~1.4.0",
"dirty-chai": "2.0.1",
"lodash": "4.17.21",
"mocha": "^8.4.0",
"perfy": "^1.1.5",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tsd": "^0.17.0"
},
"dependencies": {
"clone": "^2.1.2",
"eventemitter2": "^6.4.4",
"hash-it": "^6.0.0",
"jsonpath-plus": "^10.1.0"
}
}