forked from madoar/angular-archwizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 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
{
"name": "@sinc/angular-archwizard",
"version": "8.0.1-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": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madoar/angular-archwizard.git"
},
"bugs": {
"url": "https://github.com/madoar/angular-archwizard/issues"
},
"keywords": [
"angular",
"angular 18",
"ng18",
"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": "^18.2.10",
"@angular/cli": "^18.2.10",
"@angular/common": "^18.2.9",
"@angular/compiler": "^18.2.9",
"@angular/compiler-cli": "^18.2.9",
"@angular/core": "^18.2.9",
"@angular/forms": "^18.2.9",
"@angular/platform-browser": "^18.2.9",
"@angular/platform-browser-dynamic": "^18.2.9",
"@angular/router": "^18.2.9",
"@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": "~6.4.4",
"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": "^18.2.1",
"protractor": "~7.0.0",
"rxjs": "~6.6.3",
"sass": "^1.29.0",
"ts-node": "~9.0.0",
"tslint": "~6.1.0",
"typescript": "~5.4.5",
"zone.js": "~0.14.10"
},
"dependencies": {
"tslib": "^2.8.0"
}
}