-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.12 KB
/
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
36
37
{
"name": "console-utils",
"version": "1.0.3",
"description": "console小工具库",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/BETH-zhang/console-utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BETH-zhang/console-utils/issues"
},
"homepage": "https://github.com/BETH-zhang/console-utils#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.4",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.0-beta.6",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-runtime": "^6.6.1",
"rimraf": "^2.5.4"
},
"scripts": {
"start": "npm run prepublish",
"clean": "rimraf lib",
"babel": "babel --plugins 'transform-runtime' src --ignore __tests__ --out-dir ./lib --extensions .js --copy-files",
"prepublish": "npm run clean && npm run babel"
}
}