Skip to content

Commit a3e61df

Browse files
committed
Cleaning up dependencies
1 parent 058ce14 commit a3e61df

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

package.json

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "json-rules-engine-simplified",
3+
"version": "0.1.0",
34
"description": "Simpl JSON rules engine",
45
"private": false,
56
"author": "mavarazy@gmail.com",
6-
"version": "0.1.0",
77
"scripts": {
88
"build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
99
"build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js --optimize-minimize",
@@ -12,14 +12,16 @@
1212
"dist": "npm run build:lib && npm run build:dist",
1313
"lint": "eslint src test",
1414
"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",
1616
"tdd": "jest --watchAll",
1717
"test": "jest"
1818
},
1919
"jest": {
2020
"verbose": true,
2121
"collectCoverage": true,
22-
"collectCoverageFrom" : ["src/**/*.{js,jsx}"]
22+
"collectCoverageFrom": [
23+
"src/**/*.{js,jsx}"
24+
]
2325
},
2426
"prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
2527
"lint-staged": {
@@ -64,8 +66,6 @@
6466
"eslint-plugin-jest": "^20.0.3",
6567
"eslint-plugin-react": "^7.1.0",
6668
"eslint-plugin-standard": "^3.0.1",
67-
"estraverse": "^4.2.0",
68-
"estraverse-fb": "^1.3.2",
6969
"exit-hook": "^1.1.1",
7070
"express": "^4.15.3",
7171
"extract-text-webpack-plugin": "^2.1.2",
@@ -82,9 +82,7 @@
8282
"rimraf": "^2.6.1",
8383
"sinon": "^2.3.6",
8484
"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"
8886
},
8987
"directories": {
9088
"test": "test"

webpack.config.dist.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
output: {
99
path: path.resolve(__dirname, 'dist'),
1010
publicPath: "/dist/",
11-
filename: "form-with-predicate.js",
11+
filename: "json-rules-engine-simplified.js",
1212
library: "JSONSchemaForm",
1313
libraryTarget: "umd"
1414
},

0 commit comments

Comments
 (0)