-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.36 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
{
"name": "netlify-ts",
"version": "2.0.0",
"description": "Turn your Netlify CMS collections into TypeScript typings!",
"repository": "jsaari97/netlify-ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Jim Saari",
"keywords": [
"netlify",
"typescript",
"types",
"generate"
],
"engines": {
"node": ">=14"
},
"license": "MIT",
"bin": "./bin/run",
"files": [
"/bin",
"/lib"
],
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"test": "jest",
"lint": "eslint --fix",
"kitchen-sink": "./bin/run kitchen-sink.yml",
"prepublishOnly": "npm run build"
},
"dependencies": {
"js-yaml": "^4.0.0",
"ora": "^5.3.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/js-yaml": "^4.0.0",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^8.0.1",
"jest": "^29.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.2.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write"
}
}