Browse Source

Use correct npm scripts

master
Leo Lamprecht 8 years ago
parent
commit
a1f7dd1bea
  1. 20
      package-lock.json
  2. 5
      package.json

20
package-lock.json

@ -1790,7 +1790,7 @@
"integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=",
"dev": true, "dev": true,
"requires": { "requires": {
"es5-ext": "0.10.28" "es5-ext": "0.10.29"
} }
}, },
"dashdash": { "dashdash": {
@ -2268,9 +2268,9 @@
} }
}, },
"es5-ext": { "es5-ext": {
"version": "0.10.28", "version": "0.10.29",
"resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.28.tgz", "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.29.tgz",
"integrity": "sha512-W5o3ZcomB9I2g68pP7SufeJFtj7nQ1FDSdRgEJo5pyER+GcsibTkcUIfC1PXK70fWTV4RbskMBKDQP15FCpGRw==", "integrity": "sha512-KXla9NXo5sdaEkGSmbFPYgjH6m75kxsthL6GDRSug/Y2OiMoYm0I9giL39j4cgmaFmAbkIFJ6gG+SGKnLSmOvA==",
"dev": true, "dev": true,
"requires": { "requires": {
"es6-iterator": "2.0.1", "es6-iterator": "2.0.1",
@ -2284,7 +2284,7 @@
"dev": true, "dev": true,
"requires": { "requires": {
"d": "1.0.0", "d": "1.0.0",
"es5-ext": "0.10.28", "es5-ext": "0.10.29",
"es6-symbol": "3.1.1" "es6-symbol": "3.1.1"
} }
}, },
@ -2295,7 +2295,7 @@
"dev": true, "dev": true,
"requires": { "requires": {
"d": "1.0.0", "d": "1.0.0",
"es5-ext": "0.10.28", "es5-ext": "0.10.29",
"es6-iterator": "2.0.1", "es6-iterator": "2.0.1",
"es6-set": "0.1.5", "es6-set": "0.1.5",
"es6-symbol": "3.1.1", "es6-symbol": "3.1.1",
@ -2309,7 +2309,7 @@
"dev": true, "dev": true,
"requires": { "requires": {
"d": "1.0.0", "d": "1.0.0",
"es5-ext": "0.10.28", "es5-ext": "0.10.29",
"es6-iterator": "2.0.1", "es6-iterator": "2.0.1",
"es6-symbol": "3.1.1", "es6-symbol": "3.1.1",
"event-emitter": "0.3.5" "event-emitter": "0.3.5"
@ -2322,7 +2322,7 @@
"dev": true, "dev": true,
"requires": { "requires": {
"d": "1.0.0", "d": "1.0.0",
"es5-ext": "0.10.28" "es5-ext": "0.10.29"
} }
}, },
"es6-weak-map": { "es6-weak-map": {
@ -2332,7 +2332,7 @@
"dev": true, "dev": true,
"requires": { "requires": {
"d": "1.0.0", "d": "1.0.0",
"es5-ext": "0.10.28", "es5-ext": "0.10.29",
"es6-iterator": "2.0.1", "es6-iterator": "2.0.1",
"es6-symbol": "3.1.1" "es6-symbol": "3.1.1"
} }
@ -2542,7 +2542,7 @@
"dev": true, "dev": true,
"requires": { "requires": {
"d": "1.0.0", "d": "1.0.0",
"es5-ext": "0.10.28" "es5-ext": "0.10.29"
} }
}, },
"events": { "events": {

5
package.json

@ -6,12 +6,12 @@
"repository": "zeit/now", "repository": "zeit/now",
"scripts": { "scripts": {
"test": "eslint .", "test": "eslint .",
"prepublish": "in-install || (npm run prepare && cp /dev/null download/dist/now)", "prepublishOnly": "npm run build-download && cp /dev/null download/dist/now",
"dev": "webpack -w", "dev": "webpack -w",
"precommit": "lint-staged", "precommit": "lint-staged",
"postinstall": "node download/install.js", "postinstall": "node download/install.js",
"pack": "webpack && pkg dist/now.js -c package.json -o packed/now", "pack": "webpack && pkg dist/now.js -c package.json -o packed/now",
"prepare": "webpack --context download --config download/webpack.config.js", "build-download": "webpack --context download --config download/webpack.config.js",
"link": "webpack && cd link && npm link" "link": "webpack && cd link && npm link"
}, },
"lint-staged": { "lint-staged": {
@ -110,7 +110,6 @@
"fs-extra-promise": "1.0.1", "fs-extra-promise": "1.0.1",
"glob": "7.1.2", "glob": "7.1.2",
"ignore": "3.3.3", "ignore": "3.3.3",
"in-publish": "2.0.0",
"ini": "1.3.4", "ini": "1.3.4",
"inquirer": "3.2.2", "inquirer": "3.2.2",
"is-url": "1.2.2", "is-url": "1.2.2",

Loading…
Cancel
Save