-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@hotsuitor/akutil",
"version": "0.0.2",
"description": "Common web development tools functions. 封装日常开发常用的工具函数",
"main": "dist/akutil.umd.js",
"module": "dist/akutil.es5.js",
"typings": "dist/types/akutil.d.ts",
"scripts": {
"prepare": "husky install",
"build": "rollup -c rollup.config.ts --configPlugin typescript --bundleConfigAsCjs --environment BUILD:production",
"start": "rollup -c rollup.config.ts --configPlugin typescript --bundleConfigAsCjs --environment BUILD:development --watch",
"lint": "./node_modules/.bin/eslint src/* test/* build/*",
"prettier": "prettier --write src/*",
"test": "jest -c jest.config.js --coverage",
"test:watch": "jest -c jest.config.js --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"util",
"akutil"
],
"author": "hotsuitor <[email protected]>",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/touxing/akutil.git"
},
"homepage": "https://github.com/touxing/akutil#readme",
"license": "MIT",
"lint-staged": {
"{src,test}/**/*.{ts,js}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.4",
"@types/lodash.camelcase": "^4.3.7",
"@types/node": "^18.11.5",
"babel-loader": "^9.0.0",
"esbuild": "^0.15.12",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"lodash.camelcase": "^4.3.0",
"rollup": "^3.2.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^4.10.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.23.21",
"typedoc-plugin-markdown": "^3.14.0",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.8.4"
}
}