-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "@gykeji/jsutil",
"version": "2.0.2",
"description": "js工具类",
"main": "lib/jsutil-cjs.js",
"module": "lib/jsutil-esm.js",
"browser": "lib/jsutil-umd.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup -c",
"start": "node server.js",
"test": "jest",
"npmpush": "npm run build & npm publish",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cwlch/jsutil.git"
},
"author": "Ch",
"license": "ISC",
"bugs": {
"url": "https://github.com/cwlch/jsutil/issues"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"homepage": "http://jsutil.gykeji.com",
"dependencies": {
"marked": "^4.0.19",
"showdown": "^2.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@types/jest": "^29.0.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.33.0",
"shelljs": "^0.8.5",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
}
}