-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
101 lines (101 loc) · 2.78 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
98
99
100
101
{
"name": "json-rules-engine-simplified",
"version": "0.2.0",
"description": "Simpl JSON rules engine",
"private": false,
"author": "[email protected]",
"scripts": {
"build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
"build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js --optimize-minimize",
"cs-check": "prettier -l $npm_package_prettierOptions '{src,test}/**/*.js'",
"cs-format": "prettier $npm_package_prettierOptions '{src,test}/**/*.js' --write",
"dist": "npm run build:lib && npm run build:dist",
"lint": "eslint src test",
"precommit": "lint-staged",
"publish-to-npm": "npm run dist && npm publish && npm version patch",
"tdd": "jest --watchAll",
"test": "jest --coverage"
},
"prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
},
"lint-staged": {
"{src,test}/**/*.js": [
"npm run lint",
"npm run cs-format",
"git add"
]
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"engineStrict": false,
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"deep-equal": "1.0.1",
"predicate": "1.2.0",
"selectn": "1.1.2"
},
"devDependencies": {
"atob": "^2.0.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"codemirror": "^5.29.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"exit-hook": "^1.1.1",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.0",
"gh-pages": "^1.0.0",
"has-flag": "^2.0.0",
"html": "1.0.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jsdom": "^11.2.0",
"lint-staged": "^4.1.0",
"prettier": "^1.6.1",
"regenerator-runtime": "^0.11.0",
"rimraf": "^2.6.1",
"sinon": "^3.2.1",
"style-loader": "^0.18.2",
"webpack": "^3.5.5"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RxNT/json-rules-engine-simplified.git"
},
"keywords": [
"rules",
"engine",
"rules engine"
],
"license": "Apache-2.0",
"homepage": "https://github.com/RxNT/json-rules-engine-simplified#readme"
}