forked from gparlakov/scuri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "scuri",
"version": "1.0.1",
"description": "A spec generator schematic - Spec Create Update Read (class - component, service, directive and dependencies) Incorporate (them in the result)",
"scripts": {
"s": "schematics",
"jest": "jest",
"start": "npm run build",
"build": "tsc -p tsconfig.json",
"build.test": "tsc -p tsconfig.test.json",
"test": "jest --runInBand",
"test.watch": "jest --runInBand --watch",
"build.run": "npm run build && npm run s .:spec -- --name ./example/example.component.ts",
"start.watch": "chokidar \"src/**/*.ts\" -c \"npm start\" --initial --ignore \"src/**/*.d.ts\"",
"build.run.watch": "chokidar \"src/**/*.ts\" -c \"npm run build.run\" --initial --ignore \"src/**/*.d.ts\"",
"tslint": "tslint",
"lint": "npm run tslint -- -p tsconfig.test.json -c tslint.json",
"pretty-quick": "pretty-quick",
"deprecated_prepublish": "npm run build"
},
"keywords": [
"schematics"
],
"author": "gparlakov@gmail.com",
"license": "MIT",
"schematics": "./src/collection.json",
"repository": "https://github.com/gparlakov/scuri",
"dependencies": {
"@angular-devkit/core": "^0.8.9",
"@angular-devkit/schematics": "^0.8.9"
},
"devDependencies": {
"@angular-devkit/schematics-cli": "^0.901.1",
"@types/jest": "^25.1.4",
"@types/node": "^8.0.31",
"all-contributors-cli": "^6.14.0",
"chokidar-cli": "^2.0.0",
"husky": "^2.7.0",
"jest": "^25.1.0",
"jest-config": "^25.3.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"ts-jest": "^25.2.1",
"tslint": "^5.18.0",
"typescript": "~3.2.2"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"tabWidth": 4,
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 2
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty-quick && npm run lint"
}
}
}