-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.25 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "electron-ngrx",
"version": "0.0.0-development",
"author": "meni roytenburd",
"scripts": {
"start": "npm run demo:serve",
"build": "npm run lib:build && npm run demo:build",
"test": "ng test angular-electron --watch false && ng test electron-ngrx --watch false",
"lint": "ng lint",
"lib:build": "ng build electron-ngrx",
"lib:test": "ng test electron-ngrx",
"lib:ci:test": "ng test electron-ngrx --watch false --progress false --browsers ChromeHeadless --code-coverage",
"demo:test": "ng test angular-electron",
"demo:ci:test": "ng test angular-electron --watch false --progress false --browsers ChromeHeadless --code-coverage",
"demo:build": "ng build angular-electron",
"demo:ng:serve": "ng serve angular-electron",
"demo:electron:tsc": "tsc -p ./projects/demo/tsconfig-serve.json",
"demo:electron:serve": "wait-on http-get://localhost:4200/ && npm run demo:electron:tsc && electron ./projects/demo/main.js --serve",
"demo:serve": "npm-run-all -p demo:ng:serve demo:electron:serve",
"lint:commit": "commitlint -e",
"semantic-release": "semantic-release",
"codecov": "cat ./coverage/electron-ngrx/lcov.info | codecov --pipe"
},
"private": true,
"dependencies": {
"@angular/animations": "~8.1.2",
"@angular/cdk": "~8.2.3",
"@angular/common": "~8.1.2",
"@angular/compiler": "~8.1.2",
"@angular/core": "~8.1.2",
"@angular/forms": "~8.1.2",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "~8.1.2",
"@angular/platform-browser-dynamic": "~8.1.2",
"@angular/router": "~8.1.2",
"@ngrx/store": "^8.1.0",
"electron-mock-ipc": "^0.1.3",
"rxjs": "~6.4.0",
"tslib": "^1.9.0",
"xxhashjs": "^0.2.2",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.801.2",
"@angular-devkit/build-ng-packagr": "~0.801.2",
"@angular/cli": "~8.1.2",
"@angular/compiler-cli": "~8.1.2",
"@angular/language-service": "~8.1.2",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@ngrx/effects": "^8.1.0",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^8.9.5",
"core-js": "2.6.1",
"codecov": "^3.5.0",
"codelyzer": "^5.0.0",
"cz-conventional-changelog": "^3.0.2",
"electron": "5.0.2",
"electron-reload": "1.4.0",
"husky": "^3.0.3",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-packagr": "^5.1.0",
"npm-run-all": "4.1.5",
"protractor": "~5.4.0",
"semantic-release": "^15.13.19",
"ts-node": "~7.0.0",
"tsickle": "^0.35.0",
"tslint": "~5.15.0",
"typescript": "~3.4.3",
"wait-on": "3.2.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit"
}
},
"repository": "https://github.com/meniRoy/electron-ngrx",
"license": "ISC",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"pkgRoot": "dist/electron-ngrx"
}
}