-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 923 Bytes
/
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
{
"name": "@daangn/dawgjs",
"version": "0.0.1",
"description": "DAWG implemented in typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/daangn/dawgjs.git"
},
"license": "MIT",
"scripts": {
"build": "rimraf lib && tsc --project tsconfig.build.json",
"test": "jest",
"lint": "eslint src/**/*.ts",
"postinstall": "husky install",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}