This repository has been archived by the owner on Mar 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
68 lines (68 loc) · 2.43 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
{
"name": "@ngui/datetime-picker",
"version": "0.16.2",
"description": "Angular2 DateTime Picker",
"license": "ISC",
"main": "dist/datetime-picker.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "webpack-dev-server --quiet --port 9002 --content-base app --config app/webpack.config --open",
"lint": "tslint 'src/**/*.ts' 'app/**/*.ts'",
"clean": "rimraf dist",
"build": "npm-run-all --serial clean build:ngc build:umd build:app",
"build:ngc": "ngc -p tsconfig.ngc.json",
"build:umd": "NODE_ENV=prod webpack",
"build:app": "NODE_ENV=prod webpack --config app/webpack.config",
"test": "npm-run-all --serial test:start test:webtest test:stop",
"test:start": "forever start --silent node_modules/.bin/webpack-dev-server --quiet --port 9002 --content-base app --config app/webpack.config",
"test:stop": "forever stop node_modules/.bin/webpack-dev-server --quiet --port 9002 --content-base app --config app/webpack.config",
"test:webtest": "webtest webtest.txt",
"upgrade": "npm-check-updates -a/--upgradeAll && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng2-ui/datetime-picker.git"
},
"author": "",
"bugs": {
"url": "https://github.com/ng2-ui/datetime-picker/issues"
},
"homepage": "https://github.com/ng2-ui/datetime-picker#readme",
"dependencies": {},
"devDependencies": {
"@angular/common": "2.2.2",
"@angular/compiler": "2.2.2",
"@angular/compiler-cli": "^2.2.4",
"@angular/core": "2.2.2",
"@angular/forms": "2.2.2",
"@angular/http": "2.2.2",
"@angular/material": "^2.0.0-beta.2",
"@angular/platform-browser": "2.2.2",
"@angular/platform-browser-dynamic": "2.2.2",
"@angular/router": "3.2.2",
"@angular/upgrade": "2.2.2",
"@types/google-maps": "^3.1.27",
"@types/hammerjs": "^2.0.34",
"@types/node": "^6.0.31",
"angular2-template-loader": "^0.5.0",
"core-js": "^2.4.1",
"hammerjs": "^2.0.8",
"http-server": "^0.9.0",
"@ngui/utils": "^0.7.0",
"npm-check-updates": "^2.8.9",
"npm-run-all": "^3.1.0",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.5.3",
"rxjs": "5.0.0-beta.12",
"strip-loader": "^0.1.2",
"systemjs": "0.19.27",
"ts-loader": "^0.8.2",
"typescript": "2.0.10",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webtest": "^0.3.6",
"zone.js": "^0.6.21"
}
}