forked from urish/ngx-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.13 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
{
"name": "angular2-moment",
"version": "1.0.0-beta.1",
"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",
"src/index.ts",
"module.js",
"module.js.map",
"module.d.ts",
"src/module.ts",
"typings.json",
"CalendarPipe.js",
"CalendarPipe.js.map",
"CalendarPipe.d.ts",
"src/CalendarPipe.ts",
"DateFormatPipe.js",
"DateFormatPipe.js.map",
"DateFormatPipe.d.ts",
"src/DateFormatPipe.ts",
"DifferencePipe.js",
"DifferencePipe.js.map",
"DifferencePipe.d.ts",
"src/DifferencePipe.ts",
"DurationPipe.js",
"DurationPipe.js.map",
"DurationPipe.d.ts",
"src/DurationPipe.ts",
"TimeAgoPipe.js",
"TimeAgoPipe.js.map",
"TimeAgoPipe.d.ts",
"src/TimeAgoPipe.ts",
"FromUnixPipe.js",
"FromUnixPipe.js.map",
"FromUnixPipe.d.ts",
"src/FromUnixPipe.ts",
"CHANGELOG.md"
],
"scripts": {
"install_typings": "typings install",
"test": "tslint src/*.ts && typings install && tsc && karma start",
"prepublish": "typings install && tsc --outDir ."
},
"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-rc.5"
},
"dependencies": {
"moment": "^2.11.2"
},
"devDependencies": {
"@angular/core": "2.0.0-rc.5",
"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.6",
"ts-loader": "0.8.2",
"tslint": "3.13.0",
"typescript": "1.8.10",
"typings": "1.3.1",
"webpack": "1.13.1",
"zone.js": "0.6.12"
}
}