-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "node-modules-clean",
"version": "0.1.1",
"description": "Clear redundant files in the node_modules folder. (清除node_modules文件夹内的冗余文件。)",
"bin": "./lib/index.js",
"main": "lib/index.js",
"scripts": {
"start": "npm run cleanlib && cross-env NODE_ENV=development ./node_modules/.bin/gulp",
"build": "npm run cleanlib && cross-env NODE_ENV=production ./node_modules/.bin/gulp",
"cleanlib": "./node_modules/.bin/rimraf lib"
},
"author": {
"name": "段昊辰",
"email": "duanhaochen@126.com",
"url": "https://github.com/duan602728596"
},
"homepage": "https://github.com/duan602728596/node-modules-clean",
"bugs": {
"url" : "https://github.com/duan602728596/node-modules-clean/issues",
"email" : "duanhaochen@126.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/preset-flow": "^7.0.0-beta.39",
"cross-env": "^5.1.3",
"gulp": "gulpjs/gulp#4.0",
"gulp-babel": "^8.0.0-beta.0",
"gulp-changed": "^3.2.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.39",
"yargs": "^11.0.0"
}
}