-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.26 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
38
39
40
41
42
43
{
"name": "kaitlyn-cli",
"version": "1.0.11",
"description": "common web develop tools",
"repository": {
"type": "git",
"url": "git+https://github.com/likai757/kaitlyn-cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/likai757/kaitlyn-cli/issues"
},
"homepage": "https://github.com/likai757/kaitlyn-cli#readme",
"main": "lib/index.js",
"bin": {
"kaitlyn": "./bin/kaitlyn"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"documentation": "^5.3.5",
"jest": "^21.2.1"
},
"dependencies": {
"shelljs": "^0.8.0",
"yargs": "^10.1.1"
},
"scripts": {
"test": "jest",
"doc": "documentation build src/** -f html -o docs && open ./docs/index.html",
"copy": "mkdir -p build && cp -R package.json README.md lib bin asset build",
"build": "mkdir -p lib && babel ./src -d ./lib && npm run copy",
"publish2npm": "npm run build && npm publish ./build"
}
}