-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
77 lines (77 loc) · 1.89 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@briebug/jest-schematic",
"version": "6.0.0",
"description": "Schematic to add jest to an Angular CLI project",
"repository": "briebug/jest-schematic",
"bugs": "https://github.com/briebug/jest-schematic/issues",
"homepage": "https://github.com/briebug/jest-schematic",
"main": "src/jest/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"reset": "ts-node --project=./scripts/tsconfig.json ./scripts/e2e.ts",
"test": "ts-node --project=./scripts/tsconfig.json ./scripts/e2e.ts",
"test:single": "yarn test single",
"test:workspace": "yarn test workspace",
"test:reset": "yarn test reset",
"release": "np"
},
"keywords": [
"schematics",
"jest-schematic",
"jest",
"angular"
],
"author": "Briebug",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^10.0.6",
"@angular-devkit/schematics": "^10.0.6",
"@schematics/angular": "^10.0.6",
"@schuchard/schematics-core": "^0.4.0",
"rxjs": "6.5.5"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jasmine": "^3.3.16",
"@types/node": "^12.6.9",
"@types/shelljs": "^0.8.8",
"husky": "^4.2.5",
"jasmine": "^3.4.0",
"lint-staged": "^10.2.13",
"np": "^7.6.3",
"prettier": "^2.1.1",
"shelljs": "^0.8.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,ts}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always"
},
"np": {
"anyBranch": true,
"test-script": "yarn test single && yarn test workspace"
},
"ng-add": {
"save": "devDependencies"
}
}