-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.17 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
{
"name": "ngx-security-app",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mselerin/ngx-security"
},
"author": {
"name": "Michel Selerin",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run build:lib",
"test": "npm run test:all",
"lint": "ng lint",
"e2e": "ng e2e",
"build:app": "ng build demo --prod",
"build:lib": "ng build ngx-security --prod && npm run copy:docs",
"watch:lib": "ng build ngx-security --watch",
"test:all": "npm run test:lib && npm run build:lib && npm run test:app",
"test:app": "jest --config ./jest.app.config.js",
"test:lib": "jest --config ./jest.lib.config.js --coverage",
"publish:lib": "npm run build:lib && cd dist/ngx-security && npm publish",
"release": "npm run test:lib && lerna version --no-push",
"copy:docs": "cpx {LICENSE,README.md} dist/ngx-security",
"codecov": "cat coverage/lcovonly/lcov.info | codecov"
},
"dependencies": {
"@angular/animations": "~8.2.14",
"@angular/common": "~8.2.14",
"@angular/compiler": "~8.2.14",
"@angular/core": "~8.2.14",
"@angular/forms": "~8.2.14",
"@angular/platform-browser": "~8.2.14",
"@angular/platform-browser-dynamic": "~8.2.14",
"@angular/router": "~8.2.14",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.25",
"@angular-devkit/build-ng-packagr": "~0.803.25",
"@angular/cli": "~8.3.25",
"@angular/compiler-cli": "~8.2.14",
"@angular/language-service": "~8.2.14",
"@types/jasmine": "^3.5.7",
"@types/jasminewd2": "^2.0.8",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.6",
"codecov": "^3.1.0",
"codelyzer": "^5.1.2",
"cpx": "^1.5.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^25.1.0",
"jest-preset-angular": "^8.0.0",
"lerna": "^3.22.1",
"ng-packagr": "^5.7.1",
"protractor": "~5.4.3",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.3",
"typescript": "~3.5.3"
}
}