-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1012 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
36
37
38
39
{
"name": "plugin-extend",
"version": "0.1.3",
"description": "用于在开发一个node cli,支持自定义插件扩展",
"main": "distribution/index.js",
"scripts": {
"start": "node source/index.js",
"build": "babel source --presets babel-preset-es2015 --out-dir distribution",
"prepublish": "npm run build",
"postpublish": "git push origin --tags"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"husky": "^0.11.5"
},
"dependencies": {
"babel-polyfill": "6.16.0",
"escape-string-regexp": "1.0.5",
"globby": "6.0.0",
"lodash": "4.16.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smocean/plugin-extend.git"
},
"keywords": [
"plugin",
"extend",
"node",
"cli"
],
"bugs": {
"url": "https://github.com/smocean/plugin-extend/issues"
},
"homepage": "https://github.com/smocean/plugin-extend#readme"
}