|
1 | 1 | {
|
2 | 2 | "name": "json-rules-engine-simplified",
|
| 3 | + "version": "0.1.0", |
3 | 4 | "description": "Simpl JSON rules engine",
|
4 | 5 | "private": false,
|
5 | 6 | "author": "mavarazy@gmail.com",
|
6 |
| - "version": "0.1.0", |
7 | 7 | "scripts": {
|
8 | 8 | "build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
|
9 | 9 | "build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js --optimize-minimize",
|
|
12 | 12 | "dist": "npm run build:lib && npm run build:dist",
|
13 | 13 | "lint": "eslint src test",
|
14 | 14 | "precommit": "lint-staged",
|
15 |
| - "publish-to-npm": "npm run build:readme && npm run dist && npm publish", |
| 15 | + "publish-to-npm": "npm run dist && npm publish", |
16 | 16 | "tdd": "jest --watchAll",
|
17 | 17 | "test": "jest"
|
18 | 18 | },
|
19 | 19 | "jest": {
|
20 | 20 | "verbose": true,
|
21 | 21 | "collectCoverage": true,
|
22 |
| - "collectCoverageFrom" : ["src/**/*.{js,jsx}"] |
| 22 | + "collectCoverageFrom": [ |
| 23 | + "src/**/*.{js,jsx}" |
| 24 | + ] |
23 | 25 | },
|
24 | 26 | "prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
|
25 | 27 | "lint-staged": {
|
|
64 | 66 | "eslint-plugin-jest": "^20.0.3",
|
65 | 67 | "eslint-plugin-react": "^7.1.0",
|
66 | 68 | "eslint-plugin-standard": "^3.0.1",
|
67 |
| - "estraverse": "^4.2.0", |
68 |
| - "estraverse-fb": "^1.3.2", |
69 | 69 | "exit-hook": "^1.1.1",
|
70 | 70 | "express": "^4.15.3",
|
71 | 71 | "extract-text-webpack-plugin": "^2.1.2",
|
|
82 | 82 | "rimraf": "^2.6.1",
|
83 | 83 | "sinon": "^2.3.6",
|
84 | 84 | "style-loader": "^0.18.2",
|
85 |
| - "webpack": "^3.0.0", |
86 |
| - "webpack-dev-server": "^2.5.0", |
87 |
| - "webpack-hot-middleware": "^2.18.1" |
| 85 | + "webpack": "^3.0.0" |
88 | 86 | },
|
89 | 87 | "directories": {
|
90 | 88 | "test": "test"
|
|
0 commit comments