-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "boundary-judgment",
"version": "1.0.10",
"description": "boundary-judgment",
"main": "dist/index.commonjs.js",
"module": "dist/index.esm.js",
"umd:main": "dist/boundary-judgment.umd.js",
"scripts": {
"test": "jest",
"build": "rollup -c",
"release": "ts-node scripts/release.ts && npm publish",
"lint:lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andyqier88/boundary-judgment.git"
},
"keywords": [
"boundary-judgment"
],
"author": "王英琦 Dack Wang",
"license": "ISC",
"bugs": {
"url": "https://github.com/andyqier88/boundary-judgment/issues"
},
"homepage": "https://github.com/andyqier88/boundary-judgment#readme",
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"lint-staged": "10.5.4",
"husky": "6.0.0",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"rollup-plugin-clear": "^2.0.7"
},
"dependencies": {
"minimist": "^1.2.7",
"rollup": "^2.70.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist|npm|lintstaged)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}