-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 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
56
57
58
59
60
{
"name": "@z1digitalstudio/autogen",
"version": "0.0.1-beta.4",
"main": "build/index.js",
"author": "Pablo Rodríguez Caballero <[email protected]>",
"license": "MIT",
"bin": {
"autogen": "build/index.js"
},
"scripts": {
"build": "tsc",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'",
"lint:fix": "yarn lint --fix",
"prepare": "yarn build",
"test": "yarn build && jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts}!tests/*/{input,output}/**/*": [
"tslint --project tsconfig.json -c tslint.json --fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"chokidar": "^3.3.0",
"class-validator": "^0.11.0",
"glob": "^7.1.5",
"handlebars": "^4.5.3",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.23",
"@types/ncp": "^2.0.3",
"@types/node": "^12.12.17",
"@types/rimraf": "^2.0.3",
"execa": "^3.4.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"lodash": "^4.17.15",
"ncp": "^2.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"tslint": "^6.0.0-beta1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.3"
}
}