forked from urish/ngx-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.39 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "angular2-moment",
"version": "1.7.0",
"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",
"from-utc.pipe.js",
"from-utc.pipe.js.map",
"from-utc.pipe.d.ts",
"from-utc.pipe.metadata.json",
"parse.pipe.js",
"parse.pipe.js.map",
"parse.pipe.d.ts",
"parse.pipe.metadata.json",
"local.pipe.js",
"local.pipe.js.map",
"local.pipe.d.ts",
"local.pipe.metadata.json",
"locale.pipe.js",
"locale.pipe.js.map",
"locale.pipe.d.ts",
"locale.pipe.metadata.json",
"CHANGELOG.md"
],
"scripts": {
"test": "tslint src/*.ts --exclude=src/*.d.ts && ngc && jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand",
"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 <6.0.0"
},
"dependencies": {
"moment": "^2.16.0"
},
"devDependencies": {
"@angular/common": "2.4.10",
"@angular/compiler": "2.4.10",
"@angular/compiler-cli": "2.4.10",
"@angular/core": "2.4.10",
"@angular/platform-browser": "2.4.10",
"@angular/platform-server": "2.4.10",
"@types/jest": "^20.0.2",
"awesome-typescript-loader": "2.2.4",
"copyfiles": "1.0.0",
"es6-shim": "0.35.1",
"jest": "^20.0.4",
"reflect-metadata": "0.1.3",
"rxjs": "^5.0.1",
"tslint": "3.15.1",
"typescript": "^2.1.6",
"webpack": "1.13.2",
"zone.js": "^0.7.2"
},
"jest": {
"roots": [
"src"
],
"transform": {
"^.+\\.ts$": "<rootDir>/jest-typescript.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/jest-setup.js",
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "\\.spec\\.ts$"
}
}