forked from tarsisexistence/routeshub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.62 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
{
"name": "routeshub-workspace",
"description": "A route management library and pattern for Angular",
"version": "0.0.0",
"license": "MIT",
"author": "Max Tarsis (https://github.com/maktarsis)",
"private": true,
"scripts": {
"// - NG - //": "------------------------------",
"start": "ng serve --port 3000",
"build": "ng build routeshub --prod",
"test": "ng test routeshub",
"lint": "ng lint routeshub",
"// - SNYK - //": "------------------------------",
"snyk:test": "snyk test",
"snyk:wizard": "snyk wizard",
"// - COMMIT - //": "------------------------------",
"lint-staged": "lint-staged",
"prettier": "prettier",
"// - CONTRIBUTORS - //": "------------------------------",
"contributors:add": "npx all-contributors add",
"contributors:generate": "npx all-contributors generate",
"// - PUBLICATION - //": "------------------------------",
"move:separate": "move ts3.5 dist/routeshub",
"copy:separate": "copy tsconfig.json ts3.5",
"downlevel:separate": "npx downlevel-dts . ts3.5 && npm run copy:separate && npm run move:separate",
"downlevel": "npx downlevel-dts dist/routeshub dist/routeshub",
"publication:prepare": "npm run build && npm run downlevel",
"publication:publish": "cd dist/routeshub && npm publish",
"publication": "npm run publication:prepare && npm run publication:publish"
},
"dependencies": {
"@angular/animations": "10.0.2",
"@angular/common": "10.0.2",
"@angular/compiler": "10.0.2",
"@angular/core": "10.0.2",
"@angular/forms": "10.0.2",
"@angular/platform-browser": "10.0.2",
"@angular/platform-browser-dynamic": "10.0.2",
"@angular/router": "10.0.2",
"hammerjs": "2.0.8",
"routeshub": "4.2.0",
"rxjs": "6.6.0",
"zone.js": "0.10.3"
},
"devDependencies": {
"@angular-builders/jest": "10.0.0-beta.0",
"@angular-devkit/build-angular": "0.1000.1",
"@angular-devkit/build-ng-packagr": "0.1000.1",
"@angular/cli": "10.0.1",
"@angular/compiler-cli": "10.0.2",
"@angular/language-service": "10.0.2",
"@commitlint/cli": "9.0.1",
"@commitlint/config-conventional": "9.0.1",
"@types/jest": "26.0.3",
"@types/node": "13.13.12",
"all-contributors-cli": "6.16.1",
"codelyzer": "5.2.2",
"husky": "4.2.5",
"jest": "26.1.0",
"lint-staged": "10.2.11",
"ng-packagr": "10.0.0",
"prettier": "2.0.5",
"protractor": "7.0.0",
"snyk": "1.359.0",
"ts-node": "8.10.1",
"tsickle": "0.39.0",
"tslib": "2.0.0",
"tslint": "6.1.2",
"tslint-angular": "3.0.2",
"tslint-config-prettier": "1.18.0",
"typescript": "3.9.6"
}
}