-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1019 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": "typical-data",
"version": "0.5.0",
"description": "Test data factory",
"homepage": "https://github.com/davidtkramer/typical-data",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist/*",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"prepack": "yarn clean && yarn build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,ts}'",
"prepare": "husky install"
},
"keywords": [],
"author": "David Kramer",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.3.5"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
}
}