-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "akjs-01core",
"version": "0.0.1",
"publishConfig": {
"registry": "http://192.168.69.42:8081/repository/npmhosted/"
},
"scripts-info": {
"info": "列出所有的命令",
"clean_dist": "清空生成目录",
"compile_dist_cjs": "编译成cjs",
"compile_make-packages": "编译生成脚本",
"generate_packages": "生成packages文件",
"publish-end": "最终的发布操作",
"publish": "发布操作",
"rebuild": "重新编译"
},
"scripts": {
"info": "npm-scripts-info",
"clean_dist": "shx rm -rf ./dist",
"compile_dist_cjs": "tsc -p ./tsconfig/tsconfig.cjs.json ",
"compile_make-packages": "tsc ./build/make-packages.tsx ",
"generate_packages": "node ./build/make-packages",
"publish-end": "npm publish ./dist/cjs",
"publish": "npm-run-all compile_make-packages generate_packages publish-end",
"rebuild": "npm-run-all clean_dist compile_dist_cjs",
"lines": "find src -name \"*.js\" | xargs cat | wc -l",
"prepublish": "echo '发布之前的逻辑' ",
"postpublish": "echo '发布之后的逻辑'"
},
"dependencies": {
"01core": "^0.0.1",
"07data": "^0.0.1",
"jquery": "^3.2.1",
"jquery-migrate": "^3.0.1",
"rc-table": "^6.1.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rxjs": "^5.5.5"
},
"devDependencies": {
"@types/node": "^8.0.53",
"iconv-lite": "^0.4.19",
"typescript": "~2.6.0",
"npm-scripts-info": "^0.3.4",
"npm-run-all": "^4.0.2",
"shx": "^0.2.2",
"@types/jquery": "^3.2.17",
"@types/react": "^16.0.30",
"@types/react-dom": "^16.0.3",
"01core": "^0.0.1",
"07data": "^0.0.1"
}
}