-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·47 lines (47 loc) · 1.18 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
{
"name": "ng-samurai",
"version": "0.0.0-development",
"description": "A blank schematics",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"format": "prettier src/**/*.{ts,json,md} --write",
"format:test": "prettier src/**/*.{ts,json,md} --list-different",
"test": "jest --collectCoverage",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"schematics"
],
"author": "Kevin Kreuzer",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^12.2.3",
"@angular-devkit/schematics": "^12.2.3",
"@schematics/angular": "^12.2.3",
"boxen": "^4.2.0",
"chalk": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^8.10.59",
"husky": "^4.2.5",
"jest": "^25.5.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"semantic-release": "^17.0.7",
"ts-jest": "^25.4.0",
"ts-node": "^8.6.2",
"typescript": "^4.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kreuzerk/ng-samurai.git"
}
}