-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.62 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
{
"name": "@harvey0379/shinco",
"version": "1.0.2",
"description": "",
"main": "lib/bundle.cjs.js",
"module": "lib/bundle.esm.js",
"browser": "lib/bundle.browser.js",
"types": "types/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"preinstall": "npx only-allow yarn",
"build": "rm -rf lib && rollup -c",
"test": "jest",
"prepare": "husky install",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs": "rm -rf out && jsdoc lib/bundle.esm.js"
},
"keywords": [],
"homepage": "https://github.com/Huauauaa/shinco#readme",
"bugs": {
"url": "https://github.com/Huauauaa/shinco/issues"
},
"license": "MIT",
"author": {
"name": "Huauauaa",
"email": "harvey0379@163.com",
"url": "https://twitter.com/Harvey27171313"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.0.1",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jsdoc": "^3.6.11",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^2.79.0",
"ts-jest": "^29.0.0",
"typescript": "^4.8.3",
"vuepress": "^1.9.7"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{html,json,md}": [
"prettier --write"
]
}
}