-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 940 Bytes
/
package.json
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
{
"name": "utils",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"readme": "node build/gen-readme.js",
"dev": "node build/dev.js",
"build": "npm run clean && cross-env NODE_ENV=production rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natee/utils"
},
"homepage": "https://github.com/natee/utils#readme",
"author": "Zhao Ke <kerncink@gmail.com>",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"cross-env": "^5.2.0",
"dox": "^0.9.0",
"execa": "^1.0.0",
"glob": "^7.1.3",
"ora": "^3.0.0",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-watch": "^4.3.1"
}
}