UNPKG

1.82 kBJSONView Raw
1{
2 "name": "json-rules-engine",
3 "version": "4.0.0",
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 --env mocha | snazzy || true",
9 "lint:fix": "standard --fix --env mocha",
10 "prepublishOnly": "npm run build",
11 "build": "babel --stage 1 -d dist/ src/",
12 "watch": "babel --watch --stage 1 -d dist/ src"
13 },
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/cachecontrol/json-rules-engine"
17 },
18 "keywords": [
19 "rules",
20 "engine",
21 "rules engine"
22 ],
23 "standard": {
24 "parser": "babel-eslint",
25 "ignore": [
26 "/dist"
27 ],
28 "globals": [
29 "context",
30 "xcontext",
31 "describe",
32 "xdescribe",
33 "it",
34 "xit",
35 "before",
36 "beforeEach",
37 "expect",
38 "factories"
39 ]
40 },
41 "author": "Cache Hamm <cache.hamm@gmail.com>",
42 "license": "ISC",
43 "bugs": {
44 "url": "https://github.com/cachecontrol/json-rules-engine/issues"
45 },
46 "homepage": "https://github.com/cachecontrol/json-rules-engine",
47 "devDependencies": {
48 "babel-cli": "6.26.0",
49 "babel-core": "6.26.3",
50 "babel-eslint": "10.0.1",
51 "babel-loader": "8.0.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.2.0",
57 "chai-as-promised": "^7.1.1",
58 "colors": "~1.3.3",
59 "dirty-chai": "2.0.1",
60 "mocha": "^6.1.4",
61 "perfy": "^1.1.5",
62 "sinon": "^7.3.2",
63 "sinon-chai": "^3.3.0",
64 "snazzy": "^8.0.0",
65 "standard": "^12.0.1"
66 },
67 "dependencies": {
68 "clone": "^2.1.2",
69 "events": "^3.0.0",
70 "hash-it": "^4.0.4",
71 "lodash.isobjectlike": "^4.0.0",
72 "selectn": "^1.1.2"
73 }
74}