forked from isaacplmann/ngx-tour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.71 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
{
"name": "ngx-tour",
"version": "0.0.1",
"description": "",
"keywords": [],
"author": "Isaac Mann <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/isaacplmann/ngx-tour"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"ng": "ng",
"link": "cd dist/ngx-tour-md-menu && npm link ngx-tour-core && npm link && cd ../.. && npm link ngx-tour-md-menu && cd dist/ngx-tour-ng-bootstrap && npm link ngx-tour-core && npm link && cd ../.. && npm link ngx-tour-ng-bootstrap && cd dist/ngx-tour-console && npm link ngx-tour-core && npm link && cd ../.. && npm link ngx-tour-console && cd dist/ngx-tour-ngx-bootstrap && npm link ngx-tour-core && npm link && cd ../.. && npm link ngx-tour-ngx-bootstrap",
"prestart": "npm run link",
"start": "ng serve",
"prebuild": "npm run link",
"build": "ng build",
"build:lib:all": "npm run build:lib:core && ng-packagr -p ng-package-console.json && ng-packagr -p ng-package-md-menu.json && ng-packagr -p ng-package-ng-bootstrap.json && ng-packagr -p ng-package-ngx-bootstrap.json",
"build:lib:core": "ng-packagr -p ng-package-core.json && cd dist/ngx-tour-core && npm link && cd ../.. && npm link ngx-tour-core",
"build:lib:console": "npm run build:lib:core && ng-packagr -p ng-package-console.json",
"build:lib:md-menu": "npm run build:lib:core && ng-packagr -p ng-package-md-menu.json",
"build:lib:ng-bootstrap": "npm run build:lib:core && ng-packagr -p ng-package-ng-bootstrap.json",
"build:lib:ngx-bootstrap": "npm run build:lib:core && ng-packagr -p ng-package-ngx-bootstrap.json",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"pub": "npm run pub:lib && npm run pub:demo",
"pub:demo": "npm run build -- --base-href /ngx-tour/ && gh-pages -d dist/app",
"pub:lib": "npm run build:lib:all && (npm run pub:lib:core & npm run pub:lib:console & npm run pub:lib:ng-bootstrap & npm run pub:lib:md-menu & npm run pub:lib:ngx-bootstrap)",
"pub:lib:core": "cd dist/ngx-tour-core && npm publish",
"pub:lib:console": "cd dist/ngx-tour-console && npm publish",
"pub:lib:ng-bootstrap": "cd dist/ngx-tour-ng-bootstrap && npm publish",
"pub:lib:ngx-bootstrap": "cd dist/ngx-tour-ngx-bootstrap && npm publish",
"pub:lib:md-menu": "cd dist/ngx-tour-md-menu && npm publish"
},
"dependencies": {
"@angular/animations": "^5.0.3",
"@angular/cdk": "^5.0.0-rc.2",
"@angular/common": "^5.0.3",
"@angular/compiler": "^5.0.3",
"@angular/core": "^5.0.3",
"@angular/forms": "^5.0.3",
"@angular/http": "^5.0.3",
"@angular/material": "^5.0.0-rc.2",
"@angular/platform-browser": "^5.0.3",
"@angular/platform-browser-dynamic": "^5.0.3",
"@angular/router": "^5.0.3",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-beta.5",
"core-js": "^2.5.1",
"ngx-bootstrap": "^2.0.0-beta.9",
"ngx-tour-md-menu": "^2.0.0-rc.2",
"ngx-tour-ng-bootstrap": "^2.0.0-beta.5-2",
"ngx-tour-ngx-bootstrap": "^2.0.0-beta.9",
"rxjs": "^5.5.2",
"withinviewport": "^2.0.0",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@angular/cli": "^1.5.4",
"@angular/compiler-cli": "^5.0.3",
"@types/jasmine": "^2.8.2",
"@types/node": "^8.0.53",
"codelyzer": "^4.0.1",
"gh-pages": "^1.1.0",
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^1.6.0",
"protractor": "^5.2.0",
"ts-node": "^3.0.6",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.6.2"
}
}