|
14 | 14 | "check": "npm run lint -s && dependency-check package.json --no-default-entries src/index.js", |
15 | 15 | "watch": "watch 'npm run build' src test", |
16 | 16 | "test": "babel-node --presets es2015 test/index.js | tspec", |
17 | | - "prebuild": "npm run check -s && npm run clean -s && mkdir -p dist", |
| 17 | + "prebuild": "npm run check -s && npm run clean -s && mkdirp dist", |
18 | 18 | "build": "npm run rollup -s && npm run babel -s", |
19 | 19 | "rollup": "rollup src/index.js --output.format umd --name AsyncComputed --output.file dist/vue-async-computed.esnext.js", |
20 | 20 | "babel": "babel --optional runtime dist/vue-async-computed.esnext.js --out-file dist/vue-async-computed.js", |
21 | 21 | "postbuild": "npm run test -s", |
22 | 22 | "coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover test/index.js", |
23 | 23 | "coveralls": "npm run coverage -s && coveralls < coverage/lcov.info", |
24 | 24 | "postcoveralls": "rimraf ./coverage", |
25 | | - "prepublishOnly": "npm run build -s && npm run toc -s", |
| 25 | + "prepublishOnly": "npm run build -s", |
26 | 26 | "patch": "npm version patch && npm publish", |
27 | 27 | "minor": "npm version minor && npm publish", |
28 | 28 | "major": "npm version major && npm publish", |
|
65 | 65 | "eslint-plugin-promise": "^3.5.0", |
66 | 66 | "eslint-plugin-standard": "^3.0.1", |
67 | 67 | "estraverse-fb": "^1.3.2", |
| 68 | + "mkdirp": "^0.5.1", |
68 | 69 | "rimraf": "^2.6.1", |
69 | 70 | "rollup": "^0.48.2", |
70 | 71 | "tap-spec": "^4.1.1", |
|
0 commit comments