forked from yeshimei/ntbl-ga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@ntbl/ga",
"version": "1.0.1",
"description": "一个构建交互式命令行界面的库",
"main": "dist/ga.cjs.js",
"module": "dist/ga.es.js",
"author": {
"name": "夜是美"
},
"keywords": [
"ga",
"cli",
"terminal"
],
"files": ["dist"],
"bugs": {
"url": "https://github.com/yeshimei/ntbl-ga/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeshimei/ntbl-ga.git"
},
"license": "MIT",
"scripts": {
"build": "node build/rollup.config.js",
"docs": "jsdoc -r -c jsdoc.conf.json -t ./node_modules/ink-docstrap/template -R README.md -d docs",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"acorn": "^7.3.1",
"babel-jest": "^26.0.1",
"camelcase": "^5.3.1",
"cz-conventional-changelog": "^2.1.0",
"ink-docstrap": "^1.3.2",
"jest": "^26.0.1",
"nyc": "^13.1.0",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^1.0.1",
"terser": "^3.17.0",
"test-console": "^1.1.0",
"validate-npm-package-name": "^3.0.0"
},
"dependencies": {
"clear": "^0.1.0",
"cli-cursor": "^3.1.0",
"lodash": "^4.17.15",
"tty-events": "^0.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}