UNPKG

2.13 kBJSONView Raw
1{
2 "name": "json-rules-engine",
3 "version": "5.2.0",
4 "description": "Rules Engine expressed in simple json",
5 "main": "dist/index.js",
6 "types": "types/index.d.ts",
7 "scripts": {
8 "test": "mocha && npm run lint --silent && npm run test:types",
9 "test:types": "tsd",
10 "lint": "standard --verbose --env mocha | snazzy || true",
11 "lint:fix": "standard --fix --env mocha",
12 "prepublishOnly": "npm run build",
13 "build": "babel --stage 1 -d dist/ src/",
14 "watch": "babel --watch --stage 1 -d dist/ src"
15 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/cachecontrol/json-rules-engine"
19 },
20 "keywords": [
21 "rules",
22 "engine",
23 "rules engine"
24 ],
25 "standard": {
26 "parser": "babel-eslint",
27 "ignore": [
28 "/dist"
29 ],
30 "globals": [
31 "context",
32 "xcontext",
33 "describe",
34 "xdescribe",
35 "it",
36 "xit",
37 "before",
38 "beforeEach",
39 "expect",
40 "factories"
41 ]
42 },
43 "mocha": {
44 "require": [
45 "babel-core/register",
46 "babel-polyfill"
47 ],
48 "file": "./test/support/bootstrap.js",
49 "checkLeaks": true,
50 "globals": [
51 "expect"
52 ]
53 },
54 "author": "Cache Hamm <cache.hamm@gmail.com>",
55 "license": "ISC",
56 "bugs": {
57 "url": "https://github.com/cachecontrol/json-rules-engine/issues"
58 },
59 "homepage": "https://github.com/cachecontrol/json-rules-engine",
60 "devDependencies": {
61 "babel-cli": "6.26.0",
62 "babel-core": "6.26.3",
63 "babel-eslint": "10.1.0",
64 "babel-loader": "8.1.0",
65 "babel-polyfill": "6.26.0",
66 "babel-preset-es2015": "~6.24.1",
67 "babel-preset-stage-0": "~6.24.1",
68 "babel-register": "6.26.0",
69 "chai": "^4.2.0",
70 "chai-as-promised": "^7.1.1",
71 "colors": "~1.4.0",
72 "dirty-chai": "2.0.1",
73 "mocha": "^8.1.3",
74 "perfy": "^1.1.5",
75 "sinon": "^9.0.3",
76 "sinon-chai": "^3.5.0",
77 "snazzy": "^8.0.0",
78 "standard": "^14.3.4",
79 "tsd": "^0.13.1"
80 },
81 "dependencies": {
82 "clone": "^2.1.2",
83 "events": "^3.2.0",
84 "hash-it": "^4.0.5",
85 "jsonpath-plus": "^4.0.0",
86 "lodash.isobjectlike": "^4.0.0"
87 }
88}