-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.2 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
63
64
65
66
67
68
{
"name": "xconfiggen",
"version": "2.0.0",
"description": "这是一个基于nodejs,用于生成不同环境项目配置文件的小工具,比如:在开发环境、测试环境和生产环境生成节点相同但内容不同的配置文件,省去了手工修改配置内容的麻烦事。 ",
"main": "./dist/index.js",
"scripts": {
"check": "x-code-inspect --check-dir src",
"dist": "npm run check && webpack --mode=production --progress && tsc --emitDeclarationOnly",
"test": "npm run dist && node ./test/index.js",
"release": "standard-version && git push && git push --tags",
"ct": "git add -A && git-cz -a"
},
"dependencies": {
"minimist": "1.2.6",
"mustache": "4.2.0"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-transform-async-to-generator": "7.16.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@types/mustache": "4.1.2",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.4",
"commitizen": "4.2.4",
"eslint": "8.12.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.4",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"prettier": "2.6.1",
"standard-version": "9.3.2",
"typescript": "4.6.3",
"webpack": "5.70.0",
"webpack-cli": "4.9.2",
"x-code-inspect": "1.4.0",
"x-package-version-strict-check": "1.7.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bin": {
"xconfiggen": "./cmd.js"
},
"keywords": [
"XConfigGen",
"config"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xucongli1989/XConfigGen.git"
},
"author": "XCL",
"license": "MIT",
"bugs": {
"url": "https://github.com/xucongli1989/XConfigGen/issues"
},
"homepage": "https://github.com/xucongli1989/XConfigGen#readme"
}