-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
73 lines (73 loc) · 2.89 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
{
"name": "amazing-time-picker",
"version": "1.8.0",
"license": "MIT",
"repository": "https://github.com/owsolutions/amazing-time-picker.git",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:docs": "ng build -e=docs -prod --app 1 --progress false",
"build:github": "ng build -e=prod --app 2 -prod --base-href=/amazing-time-picker --deploy-url=/amazing-time-picker/ --progress false && cp dist/index-github.html dist/index.html",
"build": "ng build -e=prod -prod --progress false",
"test": "ng test",
"lint": "ng lint",
"ci": "npm run serve & npm run serve:beds:5 & npm run serve:beds:4 & npm run serve:beds:2 & npm run cypress:ci",
"serve:beds:2": "PORT=12000 ./node_modules/.bin/serve /tmp/amazing-time-picker-test-beds/ng2-test-bed/dist",
"serve:beds:4": "PORT=12001 ./node_modules/.bin/serve /tmp/amazing-time-picker-test-beds/ng4-test-bed/dist",
"serve:beds:5": "PORT=12002 ./node_modules/.bin/serve /tmp/amazing-time-picker-test-beds/ng5-test-bed/dist",
"cypress:ci": "./node_modules/.bin/cypress run ",
"serve": "PORT=8080 ./node_modules/.bin/serve dist",
"e2e": "ng e2e",
"cypress": "./node_modules/.bin/cypress open",
"hmr": "ng serve --hmr -e=hmr --port=8080",
"packagr": "ng-packagr -p ng-package.json",
"gh-pages": "git push origin :gh-pages && git subtree push --prefix dist origin gh-pages",
"build:npm": "npm run publisher",
"publisher": "rm npm_dist -Rf && npm run packagr && cd npm_dist && mv $(npm pack) dist.tgz",
"publisher:mac": "rm -rf npm_dist && npm run packagr && cd npm_dist && mv $(npm pack) dist.tgz"
},
"private": false,
"dependencies": {
"@angular/animations": ">=4.2.4",
"@angular/common": ">=2.4.5",
"@angular/compiler": ">=2.4.5",
"@angular/core": ">=2.4.5",
"@angular/forms": ">=2.4.5",
"@angular/http": ">=2.4.5",
"@angular/platform-browser": ">=2.4.5",
"@angular/platform-browser-dynamic": ">=2.4.5",
"@angular/router": ">=2.4.5",
"core-js": "^2.4.1",
"intl": "^1.2.5",
"node-sass": "^4.12.0",
"rxjs": "^5.5.12",
"rxjs-compat": "^6.2.2",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "1.3.2",
"@angular/compiler-cli": "^4.2.4",
"@angular/language-service": "^4.2.4",
"@angularclass/hmr": "^2.1.3",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "~3.1.1",
"concurrently": "^3.5.1",
"cypress": "^1.4.1",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "1.6.0",
"protractor": "~5.1.2",
"serve": "^6.4.8",
"ts-node": "~3.2.0",
"tslint": "~5.3.2",
"typescript": "~2.3.3"
}
}