-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 2.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
61
62
63
64
65
66
67
68
69
{
"name": "@briebug/ngrx-entity-schematic",
"version": "0.2.0",
"description": "An Angular schematic for quickly scaffolding NgRx Entities with actions, effects, reducer, model, service, and passing specs.",
"author": "Kevin Schuchard <[email protected]>",
"contributors": [
"Reid Villeneuve <[email protected]>",
"Jamie Perkins <http://inorganik.net>"
],
"main": "src/ngrx-entity/index.js",
"schematics": "./src/collection.json",
"license": "MIT",
"scripts": {
"build:schematic": "tsc -p tsconfig.json",
"build:schematic:watch": "tsc -p tsconfig.schematic.json -watch",
"clean": "git checkout HEAD -- sandbox-app && git clean -fd sandbox-app",
"clean:launch": "yarn clean && yarn launch",
"clean:build:launch": "yarn build:schematic && yarn clean:launch",
"launch": "cd sandbox-app && ng g @briebug/ngrx-entity-schematic:add",
"test": "yarn clean:build:launch briebug --init --path src/app/state && yarn test:sandbox && yarn clean",
"test:ci": "yarn clean:build:launch briebug --init --path src/app/state && yarn test:sandbox && yarn clean",
"test:sandbox": "cd sandbox-app && yarn lint && yarn test && yarn e2e && yarn build",
"link:schematic": "yarn link && cd sandbox-app && yarn link @briebug/ngrx-entity-schematic",
"release": "yarn clean && yarn build:schematic && yarn np"
},
"dependencies": {
"@angular-devkit/core": "^7.0.2",
"@angular-devkit/schematics": "^7.0.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.10.2",
"@angular/compiler-cli": "^7.0.0",
"@angular/language-service": "^7.0.0",
"@types/jasmine": "^3.3.12",
"@types/node": "^10.12.0",
"codelyzer": "~4.5.0",
"jasmine-core": "~3.3",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^1.3.1",
"np": "3.0.4",
"protractor": "~5.4.1",
"ts-node": "^7.0.1",
"tslint": "~5.11.0",
"typescript": "~3.1.3"
},
"engines": {
"node": ">=8.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/briebug/ngrx-entity-schematic"
},
"bugs": "https://github.com/briebug/ngrx-entity-schematic/issues",
"publishConfig": {
"access": "public"
},
"keywords": [
"angular",
"schematic",
"ngrx",
"entity",
"entities",
"scaffold"
]
}