-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.32 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
{
"name": "ng2-permission",
"version": "1.3.0",
"scripts": {
"build": "ng build ng2-permission",
"build:demo": "ng build demo --base-href /ng2-permission/docs/demo/ -c production",
"start": "npm run build && ng serve -o demo",
"docs": "npm run docs:build",
"docs:build": "compodoc -p projects/ng2-permission/tsconfig.doc.json -n ng2-permission -d dist/docs --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"lint": "ng lint --type-check",
"test": "ng test ng2-permission",
"release": "standard-version -a",
"deploy": "npm run build -- --prod && npm publish dist/ng2-permission --registry=https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/e-cloud/ng2-permission"
},
"author": {
"name": "e-cloud",
"email": "[email protected]"
},
"keywords": [
"angular",
"ng2-permission"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/e-cloud/ng2-permission/issues"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.7",
"@angular/cli": "^11.0.7",
"@angular/common": "^11.0.9",
"@angular/compiler": "^11.0.9",
"@angular/compiler-cli": "^11.0.9",
"@angular/core": "^11.0.9",
"@angular/platform-browser": "^11.0.9",
"@angular/platform-browser-dynamic": "^11.0.9",
"@angular/router": "^11.0.9",
"@compodoc/compodoc": "^1.0.4",
"@types/jasmine": "~3.6.0",
"@types/lodash-es": "^4.17.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"core-js": "^2.4.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lodash-es": "^4.17.4",
"ng-packagr": "^11.0.3",
"protractor": "~7.0.0",
"rxjs": "^6.6.3",
"standard-version": "^4.1.0",
"ts-node": "^7.0.0",
"tslint": "~6.1.0",
"tslint-consistent-codestyle": "^1.16.0",
"typescript": "~4.0.5",
"zone.js": "~0.11.0"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"tslib": "^2.0.0"
},
"standard-version": {
"scripts": {
"postbump": "node tools/bump-version.js && git add ."
}
}
}