-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "ktools",
"version": "0.0.3",
"description": "前端工具库",
"main": "dist/ktools.cjs.js",
"module": "dist/ktools.esm.js",
"browser": "dist/index.js",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c && npm run copy",
"copy": "cp dist/ktools.esm.js demo && cp package.json dist",
"publish": "node scripts/publish.js",
"test": "ts-node test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kagol/ktools.git"
},
"keywords": [
"toolkit"
],
"author": "Kagol",
"license": "MIT",
"bugs": {
"url": "https://github.com/kagol/ktools/issues"
},
"homepage": "https://github.com/kagol/ktools#readme",
"devDependencies": {
"@types/ms": "^0.7.31",
"commander": "^6.2.0",
"rollup": "^2.33.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"shelljs": "^0.8.4",
"ts-node": "^9.0.0",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"dependencies": {
"@kagol/ktools": "0.0.1",
"@types/lodash-es": "^4.17.3",
"lodash-es": "^4.17.15"
}
}