-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"private": false,
"name": "@icare-jp/vue-props-type",
"version": "0.0.22",
"scripts": {
"build": "tsc --emitDeclarationOnly",
"prepare": "npm run build",
"lint": "eslint --ext .tsx,.ts",
"lintfix": "prettier --write '**/*.{ts,tsx}' && eslint --ext .tsx,.ts --fix .",
"publish": "npm publish --access public",
"test": "npx jest"
},
"description": "vue-props-type",
"repository": {
"type": "git",
"url": "git+https://github.com/icare-jp-oss/vue-props-type.git"
},
"keywords": [],
"author": "kahirokunn",
"license": "MIT",
"bugs": {
"url": "https://github.com/icare-jp-oss/vue-props-type/issues"
},
"main": "lib/index.d.ts",
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
}
}