This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
106 lines (106 loc) · 3.72 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "ng-boosted",
"version": "12.0.0",
"description": "Orange Boosted with Bootstrap 4 and Angular",
"keywords": [
"boosted",
"angular",
"typescript"
],
"author": "Orange",
"homepage": "https://orange-opensource.github.io/Orange-Boosted-Angular",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test --browsers=PhantomJS --watch=false --code-coverage=true --sourceMap=false",
"lint": "ng lint",
"e2e": "ng e2e",
"build:docs": "ng build --configuration production",
"publish-docs": "npm run build:docs && git checkout gh-pages && git add dist/Orange-Boosted-Angular && git commit -m \"chore: compile documentation\" --allow-empty && git push origin gh-pages && echo 'Documentation successfully deployed !'",
"copy-readme": "cpx ./README.md dist/ng-boosted",
"test:lib": "ng test ng-boosted --browsers=PhantomJS --watch=false --code-coverage=true --sourceMap=false",
"lint-lib": "ng lint ng-boosted",
"build:lib": "ng build ng-boosted --configuration production && npm run build:lib-styles",
"build:lib-styles": "scss-bundle -e ./projects/ng-boosted/src/lib/style/ng-boosted.scss -o ./dist/ng-boosted/style/ng-boosted.scss",
"publish-lib": "npm run build-lib && npm run copy-readme && cd dist/ng-boosted && npm publish"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.2.5",
"@angular-eslint/builder": "^13.1.0",
"@angular-eslint/eslint-plugin": "^12.7.0",
"@angular-eslint/eslint-plugin-template": "^12.7.0",
"@angular-eslint/schematics": "^13.1.0",
"@angular-eslint/template-parser": "^12.7.0",
"@angular/animations": "~13.2.4",
"@angular/cli": "^13.2.5",
"@angular/common": "~13.2.4",
"@angular/compiler": "~13.2.4",
"@angular/compiler-cli": "~13.2.4",
"@angular/core": "~13.2.4",
"@angular/forms": "~13.2.4",
"@angular/language-service": "~13.2.4",
"@angular/localize": "~13.2.4",
"@angular/platform-browser": "~13.2.4",
"@angular/platform-browser-dynamic": "~13.2.4",
"@angular/router": "~13.2.4",
"@ng-bootstrap/ng-bootstrap": "^12.0.0",
"@popperjs/core": "^2.11.0",
"@types/jasmine": "^3.10.2",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^14.18.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"acorn": "^8.6.0",
"boosted": "^5.1.3",
"core-js": "^2.6.12",
"cpx2": "^4.2.0",
"eslint": "^8.5.0",
"focus-visible": "^5.2.0",
"html-loader": "^3.0.1",
"install": "^0.13.0",
"jasmine-core": "^3.10.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.17",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-phantomjs-launcher": "1.0.4",
"kind-of": "^6.0.3",
"lodash": "^4.17.21",
"markdown-loader": "^8.0.0",
"minimist": "^1.2.5",
"ng-packagr": "^13.2.1",
"node-forge": "^1.2.1",
"prismjs": "^1.27.0",
"prismjs-loader": "^0.0.4",
"protractor": "~7.0.0",
"rxjs": "^7.5.4",
"sass": "^1.45.1",
"scss-bundle": "^3.1.2",
"serialize-javascript": "^6.0.0",
"set-value": "^4.1.0",
"ts-node": "~10.4.0",
"tslib": "^2.3.1",
"typescript": "~4.5.5",
"webpack-subresource-integrity": "^1.5.1",
"zone.js": "~0.11.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Orange-OpenSource/Orange-Boosted-Angular.git"
},
"bugs": {
"url": "https://github.com/Orange-OpenSource/Orange-Boosted-Angular/issues"
},
"engines": {
"node": ">= 14.18.1",
"npm": ">= 6"
},
"files": [
"dist/**/*"
]
}