-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "hwp.js",
"version": "0.0.3",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"website"
],
"repository": {
"type": "git",
"url": "https://github.com/hahnlee/hwp.js.git"
},
"homepage": "https://hanlee.io/hwp.js",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/hahnlee/hwp.js/issues"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged && yarn typecheck && yarn jest"
}
},
"lint-staged": {
"src/**/*.(js|ts)?(x)": [
"eslint"
]
},
"scripts": {
"build": "yarn typecheck && rollup -c rollup.config.js",
"lint-staged": "lint-staged",
"typecheck": "yarn workspaces foreach run typecheck",
"lint": "yarn workspaces foreach run lint",
"test": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]"
}