forked from urish/ngx-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.75 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "angular2-moment",
"version": "1.3.3",
"description": "Moment.JS pipes for Angular2 (timeago and more)",
"main": "index.js",
"typings": "./index.d.ts",
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"index.metadata.json",
"moment.module.js",
"moment.module.js.map",
"moment.module.d.ts",
"moment.module.metadata.json",
"calendar.pipe.js",
"calendar.pipe.js.map",
"calendar.pipe.d.ts",
"calendar.pipe.metadata.json",
"date-format.pipe.js",
"date-format.pipe.js.map",
"date-format.pipe.d.ts",
"date-format.pipe.metadata.json",
"difference.pipe.js",
"difference.pipe.js.map",
"difference.pipe.d.ts",
"difference.pipe.metadata.json",
"duration.pipe.js",
"duration.pipe.js.map",
"duration.pipe.d.ts",
"duration.pipe.metadata.json",
"time-ago.pipe.js",
"time-ago.pipe.js.map",
"time-ago.pipe.d.ts",
"time-ago.pipe.metadata.json",
"from-unix.pipe.js",
"from-unix.pipe.js.map",
"from-unix.pipe.d.ts",
"from-unix.pipe.metadata.json",
"add.pipe.js",
"add.pipe.js.map",
"add.pipe.d.ts",
"add.pipe.metadata.json",
"subtract.pipe.js",
"subtract.pipe.js.map",
"subtract.pipe.d.ts",
"subtract.pipe.metadata.json",
"utc.pipe.js",
"utc.pipe.js.map",
"utc.pipe.d.ts",
"utc.pipe.metadata.json",
"CHANGELOG.md"
],
"scripts": {
"test": "tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start",
"prepublish": "ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/urish/angular2-moment.git"
},
"keywords": [
"angular2",
"momentjs"
],
"author": "Uri Shaked",
"license": "MIT",
"bugs": {
"url": "https://github.com/urish/angular2-moment/issues"
},
"homepage": "https://github.com/urish/angular2-moment#readme",
"peerDependencies": {
"@angular/core": ">=2.0.0 <5.0.0"
},
"dependencies": {
"moment": "^2.16.0"
},
"devDependencies": {
"@angular/common": "2.0.2",
"@angular/compiler": "2.0.2",
"@angular/compiler-cli": "0.6.4",
"@angular/core": "2.0.2",
"@angular/platform-browser": "2.0.2",
"@angular/platform-server": "2.0.2",
"@types/jasmine": "2.5.35",
"awesome-typescript-loader": "2.2.4",
"copyfiles": "1.0.0",
"es6-shim": "0.35.1",
"jasmine-core": "2.4.1",
"karma": "1.1.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.1",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.7.0",
"phantomjs-prebuilt": "2.1.7",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.12",
"tslint": "3.15.1",
"typescript": "2.0.3",
"webpack": "1.13.2",
"zone.js": "0.6.25"
}
}