UNPKG

1.9 kBJSONView Raw
1{
2 "name": "json-rules-engine",
3 "version": "2.0.3",
4 "description": "Rules Engine expressed in simple json",
5 "main": "dist/index.js",
6 "scripts": {
7 "test": "mocha && npm run lint --silent",
8 "lint": "standard --verbose | snazzy || true",
9 "lint:fix": "standard --fix",
10 "prepublish": "npm run compile",
11 "compile": "babel --stage 1 -d dist/ src/ && regenerator --no-cache-dir --include-runtime src/generator-runtime.js > dist/generator-runtime.js"
12 },
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/cachecontrol/json-rules-engine"
16 },
17 "keywords": [
18 "rules",
19 "engine",
20 "rules engine"
21 ],
22 "standard": {
23 "parser": "babel-eslint",
24 "ignore": [
25 "/dist"
26 ],
27 "globals": [
28 "context",
29 "xcontext",
30 "describe",
31 "xdescribe",
32 "it",
33 "xit",
34 "before",
35 "beforeEach",
36 "expect",
37 "factories"
38 ]
39 },
40 "author": "Cache Hamm <cdhamm@gmail.com>",
41 "license": "ISC",
42 "bugs": {
43 "url": "https://github.com/cachecontrol/json-rules-engine/issues"
44 },
45 "homepage": "https://github.com/cachecontrol/json-rules-engine",
46 "devDependencies": {
47 "babel-cli": "6.26.0",
48 "babel-core": "6.26.0",
49 "babel-eslint": "8.0.2",
50 "babel-loader": "7.1.2",
51 "babel-plugin-transform-async-to-generator": "^6.4.6",
52 "babel-polyfill": "6.26.0",
53 "babel-preset-es2015": "~6.24.1",
54 "babel-preset-stage-0": "~6.24.1",
55 "babel-register": "6.26.0",
56 "chai": "4.1.2",
57 "chai-as-promised": "7.1.1",
58 "colors": "~1.1.2",
59 "dirty-chai": "2.0.1",
60 "mocha": "4.0.1",
61 "regenerator": "0.11.0",
62 "sinon": "4.1.2",
63 "sinon-chai": "2.14.0",
64 "snazzy": "^7.0.0",
65 "standard": "10.0.3"
66 },
67 "dependencies": {
68 "clone": "^2.1.1",
69 "debug": "^3.1.0",
70 "lodash.isobjectlike": "^4.0.0",
71 "object-hash": "^1.2.0",
72 "selectn": "^1.1.2"
73 }
74}