-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.33 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
{
"name": "angular-leaflet-dev",
"version": "0.0.17",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --aot",
"build": "ng build --prod",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"lint": "ng lint",
"e2e": "ng e2e",
"build-lib": "ng build --prod lib && cp ./README.md ./dist/lib",
"publish-lib": "cd dist/lib && npm publish",
"deploy-lib": "npm run build-lib && npm run publish-lib",
"commit": "git-cz"
},
"dependencies": {
"@angular/animations": "^8.1.1",
"@angular/cdk": "^8.1.0",
"@angular/common": "^8.1.1",
"@angular/compiler": "^8.1.1",
"@angular/core": "^8.1.1",
"@angular/forms": "^8.1.1",
"@angular/material": "^8.1.1",
"@angular/platform-browser": "^8.1.1",
"@angular/platform-browser-dynamic": "^8.1.1",
"@angular/router": "^8.1.1",
"core-js": "^2.4.1",
"leaflet": "^1.3.1",
"rxjs": "^6.5.2",
"rxjs-compat": "^6.0.0-rc.0",
"uuid": "^3.3.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.801.1",
"@angular-devkit/build-ng-packagr": "~0.801.1",
"@angular/cli": "8.1.1",
"@angular/compiler-cli": "^8.1.1",
"@angular/language-service": "^8.1.1",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/jest": "^22.2.2",
"@types/leaflet": "^1.2.5",
"@types/node": "~6.0.60",
"@types/uuid": "^3.4.3",
"codelyzer": "^5.1.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jasmine-core": "^3.4.0",
"jest": "^24.8.0",
"jest-preset-angular": "^7.1.1",
"ng-packagr": "^5.3.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"protractor": "^5.4.2",
"ts-node": "~4.1.0",
"tsickle": "^0.36.0",
"tslib": "^1.7.1",
"tslint": "~5.9.1",
"typescript": "~3.4.5"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/lib/setupJest.ts",
"globals": {
"ts-jest": {
"tsConfig": "lib/tsconfig.spec.json",
"stringifyContentPathRegex": true
}
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}