-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"name": "script-toolkit",
"version": "0.0.4",
"description": "Common javascript toolkits",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"dev": "cross-env RUN_ENV=development rollup --config rollup.config.js",
"build": "cross-env RUN_ENV=production rollup --config rollup.config.js",
"lint": "eslint --ext .js src",
"doc:md": "jsdoc2md src/**/*.js > /docs/api-doc.md",
"doc:page": "jsdoc -c jsdoc.config.json",
"doc:push": "gh-pages -d api-docs"
},
"keywords": [
"js",
"javascript",
"jslib",
"jstools",
"toolkit",
"util",
"commom"
],
"repository": {
"type": "git",
"url": "https://github.com/Hulkye/script-toolkit"
},
"bugs": {
"url": "https://github.com/Hulkye/script-toolkit/issues",
"email": "137940587@qq.com"
},
"author": "Hulkye",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/runtime-corejs3": "^7.12.5",
"@rollup/plugin-multi-entry": "^4.0.0",
"acorn": "^8.0.4",
"cross-env": "^7.0.3",
"eslint": "^7.16.0",
"gh-pages": "^3.1.0",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"minami": "^1.2.3",
"rollup": "^2.34.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.12.5",
"core-js": "^3.8.1"
}
}