-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.28 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 --configuration production",
"build:lib": "ng build ngx-security --configuration production && npm run copy:docs",
"watch:lib": "ng build ngx-security --configuration production --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",
"pack:lib": "npm run build:lib && cd dist/ngx-security && npm pack",
"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": "~12.2.13",
"@angular/common": "~12.2.13",
"@angular/compiler": "~12.2.13",
"@angular/core": "~12.2.13",
"@angular/forms": "~12.2.13",
"@angular/platform-browser": "~12.2.13",
"@angular/platform-browser-dynamic": "~12.2.13",
"@angular/router": "~12.2.13",
"rxjs": "~6.5.4",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.13",
"@angular/cli": "~12.2.13",
"@angular/compiler-cli": "~12.2.13",
"@angular/language-service": "~12.2.13",
"@types/jasmine": "~3.10.2",
"@types/jasminewd2": "^2.0.10",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"codecov": "^3.8.2",
"codelyzer": "^6.0.2",
"cpx": "^1.5.0",
"jasmine-core": "~3.10.1",
"jasmine-spec-reporter": "~7.0.0",
"jest": "^27.3.1",
"jest-preset-angular": "^10.1.0",
"lerna": "^3.22.1",
"ng-packagr": "^12.2.5",
"protractor": "~7.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5"
}
}