Upgrade package.json to NPM v5 (#688)

This commit is contained in:
Flavio Curella 2017-07-03 14:11:40 -05:00 committed by Andrew Godwin
parent a3f4e002ee
commit a699eec7ee

View File

@ -12,9 +12,12 @@
"docs": "rm -rf docs && esdoc -c esdoc.json", "docs": "rm -rf docs && esdoc -c esdoc.json",
"test": "jest", "test": "jest",
"browserify": "browserify src/index.js -p browserify-banner -s channels -o ../channels/static/channels/js/websocketbridge.js", "browserify": "browserify src/index.js -p browserify-banner -s channels -o ../channels/static/channels/js/websocketbridge.js",
"prepublish": "npm run transpile", "prepare": "npm run transpile",
"compile": "npm run transpile && npm run browserify" "compile": "npm run transpile && npm run browserify"
}, },
"engines": {
"npm": "^5.0.0"
},
"files": [ "files": [
"lib/index.js" "lib/index.js"
], ],
@ -35,7 +38,6 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.24.0", "babel-cli": "^6.24.0",
"babel-core": "^6.16.0", "babel-core": "^6.16.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0", "babel-plugin-transform-inline-environment-variables": "^6.8.0",