-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
83 lines (83 loc) · 2.41 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
{
"name": "angular-archwizard",
"version": "8.0.0-develop",
"license": "MIT",
"description": "An Angular 9+ module containing a wizard component and its supporting components and directives",
"homepage": "https://github.com/madoar/angular-archwizard",
"author": {
"name": "Marc Arndt",
"email": "marc.arndt@masimi.de"
},
"repository": {
"type": "git",
"url": "https://github.com/madoar/angular-archwizard"
},
"bugs": {
"url": "https://github.com/madoar/angular-archwizard/issues"
},
"keywords": [
"angular",
"angular9",
"angular10",
"angular11",
"angular 9",
"angular 10",
"angular 11",
"ng9",
"ng10",
"ng11",
"ngx",
"typescript",
"wizard",
"component"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run build-js && npm run extract-scss-variables && npm run build-css",
"build-js": "ng build",
"extract-scss-variables": "extract-scss-variables ./dist/styles/archwizard.scss ./dist/styles/variables.scss",
"build-css": "sass ./dist/styles/archwizard.scss ./dist/styles/archwizard.css",
"test": "ng test && ng test --tsConfig=tsconfig-noIvy.spec.json",
"coverage": "ng test --no-watch --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.1",
"@angular/cli": "~11.0.1",
"@angular/common": "^11.0.0",
"@angular/compiler": "^11.0.0",
"@angular/compiler-cli": "^11.0.0",
"@angular/core": "^11.0.0",
"@angular/forms": "^11.0.0",
"@angular/platform-browser": "^11.0.0",
"@angular/platform-browser-dynamic": "^11.0.0",
"@angular/router": "^11.0.0",
"@earshinov/extract-scss-variables": "~0.1.1",
"@types/jasmine": "~3.6.0",
"@types/node": "^14.11.2",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-detect-browsers": "~2.3.3",
"karma-firefox-launcher": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-safari-launcher": "~1.0.0",
"ng-packagr": "^11.0.2",
"protractor": "~7.0.0",
"rxjs": "~6.6.3",
"sass": "^1.29.0",
"ts-node": "~9.0.0",
"tslint": "~6.1.0",
"typescript": "~4.0.3",
"zone.js": "~0.10.3"
},
"dependencies": {
"tslib": "^2.0.0"
}
}