-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2 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": "ng-electron-devkit",
"description": "Development, Test und Build tools for Angular applications running in electron",
"version": "8.0.0-alpha2",
"license": "MPL-2.0",
"builders": "builders.json",
"scripts": {
"install:sample" : "cd sample && yarn",
"install:builders" : "cd packages/builders && yarn",
"build": "./node_modules/.bin/tsc -p packages/builders",
"test" : "cd packages/builders && yarn test",
"lint" : "cd packages/builders && yarn lint",
"test:integration": "sh copy-to-sample.sh && cd sample && yarn build:electron --electronPlatforms=linux",
"test:integration:win": "sh copy-to-sample.sh && cd sample && yarn build:electron --electronPlatforms=win",
"test:integration:mac": "sh copy-to-sample.sh && cd sample && yarn build:electron --electronPlatforms=mac"
},
"repository": {
"type": "git",
"url": "https://github.com/nekator/ng-electron-devkit.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120,
"trailingComma": "none"
},
"lint-staged": {
"{packages}/**/*.{css,scss,js,ts,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@angular-devkit/architect": "^0.803.3",
"@angular-devkit/build-angular": "^0.803.25",
"@angular/compiler": "^11.0.1",
"@angular/core": "^11.0.2",
"@types/jest": "^26.0.14",
"@types/node": "^14.14.9",
"codelyzer": "^6.0.1",
"electron": "^11.0.2",
"electron-builder": "^22.9.1",
"glob": "^7.1.6",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"jest": "^25.5.4",
"prettier": "2.1.2",
"protractor": "^7.0.0",
"spectron": "^12.0.0",
"ts-jest": "^25.5.1",
"tslint": "^6.1.3",
"tslint-angular": "^3.0.3",
"typescript": "~3.5.3"
},
"author": "Provinzial Rheinland Versicherung AG",
"keywords": [
"electron",
"angular",
"devkit",
"sdk",
"Angular DevKit"
]
}