forked from hahnlee/hwp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
{
"name": "hwp.js",
"version": "0.0.3",
"main": "build/cjs.js",
"module": "build/esm.js",
"types": "build/index.d.ts",
"siseEffect": false,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hahnlee/hwp.js.git"
},
"homepage": "https://hanlee.io/hwp.js",
"bugs": {
"email": "hanlee.dev@gmail.com",
"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": "tsc",
"lint": "eslint ./src",
"test": "jest --coverage"
},
"files": [
"build/"
],
"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",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-strip": "^2.0.0",
"@types/jest": "^26.0.10",
"@types/pako": "^1.0.1",
"@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-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"rollup": "^2.26.10",
"typescript": "^4.0.2"
},
"dependencies": {
"cfb": "^1.2.0",
"pako": "^1.0.11"
}
}