1 | {
|
2 | "name": "angular2-moment",
|
3 | "version": "1.9.0",
|
4 | "description": "Moment.JS pipes for Angular2 (timeago and more)",
|
5 | "main": "index.js",
|
6 | "typings": "./index.d.ts",
|
7 | "files": [
|
8 | "index.js",
|
9 | "index.js.map",
|
10 | "index.d.ts",
|
11 | "index.metadata.json",
|
12 | "moment.module.js",
|
13 | "moment.module.js.map",
|
14 | "moment.module.d.ts",
|
15 | "moment.module.metadata.json",
|
16 | "calendar.pipe.js",
|
17 | "calendar.pipe.js.map",
|
18 | "calendar.pipe.d.ts",
|
19 | "calendar.pipe.metadata.json",
|
20 | "date-format.pipe.js",
|
21 | "date-format.pipe.js.map",
|
22 | "date-format.pipe.d.ts",
|
23 | "date-format.pipe.metadata.json",
|
24 | "difference.pipe.js",
|
25 | "difference.pipe.js.map",
|
26 | "difference.pipe.d.ts",
|
27 | "difference.pipe.metadata.json",
|
28 | "duration.pipe.js",
|
29 | "duration.pipe.js.map",
|
30 | "duration.pipe.d.ts",
|
31 | "duration.pipe.metadata.json",
|
32 | "time-ago.pipe.js",
|
33 | "time-ago.pipe.js.map",
|
34 | "time-ago.pipe.d.ts",
|
35 | "time-ago.pipe.metadata.json",
|
36 | "from-unix.pipe.js",
|
37 | "from-unix.pipe.js.map",
|
38 | "from-unix.pipe.d.ts",
|
39 | "from-unix.pipe.metadata.json",
|
40 | "add.pipe.js",
|
41 | "add.pipe.js.map",
|
42 | "add.pipe.d.ts",
|
43 | "add.pipe.metadata.json",
|
44 | "subtract.pipe.js",
|
45 | "subtract.pipe.js.map",
|
46 | "subtract.pipe.d.ts",
|
47 | "subtract.pipe.metadata.json",
|
48 | "utc.pipe.js",
|
49 | "utc.pipe.js.map",
|
50 | "utc.pipe.d.ts",
|
51 | "utc.pipe.metadata.json",
|
52 | "from-utc.pipe.js",
|
53 | "from-utc.pipe.js.map",
|
54 | "from-utc.pipe.d.ts",
|
55 | "from-utc.pipe.metadata.json",
|
56 | "parse.pipe.js",
|
57 | "parse.pipe.js.map",
|
58 | "parse.pipe.d.ts",
|
59 | "parse.pipe.metadata.json",
|
60 | "local.pipe.js",
|
61 | "local.pipe.js.map",
|
62 | "local.pipe.d.ts",
|
63 | "local.pipe.metadata.json",
|
64 | "locale.pipe.js",
|
65 | "locale.pipe.js.map",
|
66 | "locale.pipe.d.ts",
|
67 | "locale.pipe.metadata.json",
|
68 | "CHANGELOG.md"
|
69 | ],
|
70 | "scripts": {
|
71 | "test": "tslint src/*.ts --exclude=src/*.d.ts && ngc && jest",
|
72 | "test:watch": "jest --watch",
|
73 | "test:coverage": "jest --coverage",
|
74 | "test:debug": "node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand",
|
75 | "prepublish": "ngc && rimraf -- \"./compiled/node_modules\" && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."
|
76 | },
|
77 | "repository": {
|
78 | "type": "git",
|
79 | "url": "git+https://github.com/urish/angular2-moment.git"
|
80 | },
|
81 | "keywords": [
|
82 | "angular2",
|
83 | "momentjs"
|
84 | ],
|
85 | "author": "Uri Shaked",
|
86 | "license": "MIT",
|
87 | "bugs": {
|
88 | "url": "https://github.com/urish/angular2-moment/issues"
|
89 | },
|
90 | "homepage": "https://github.com/urish/angular2-moment#readme",
|
91 | "peerDependencies": {
|
92 | "@angular/core": ">=2.0.0 <6.0.0"
|
93 | },
|
94 | "dependencies": {
|
95 | "moment": "^2.19.3"
|
96 | },
|
97 | "devDependencies": {
|
98 | "@angular/common": "2.4.10",
|
99 | "@angular/compiler": "2.4.10",
|
100 | "@angular/compiler-cli": "2.4.10",
|
101 | "@angular/core": "2.4.10",
|
102 | "@angular/platform-browser": "2.4.10",
|
103 | "@angular/platform-server": "2.4.10",
|
104 | "@types/jest": "^20.0.2",
|
105 | "awesome-typescript-loader": "2.2.4",
|
106 | "copyfiles": "1.0.0",
|
107 | "es6-shim": "0.35.1",
|
108 | "jest": "^20.0.4",
|
109 | "reflect-metadata": "0.1.3",
|
110 | "rxjs": "^5.0.1",
|
111 | "tslint": "3.15.1",
|
112 | "typescript": "^2.1.6",
|
113 | "webpack": "1.13.2",
|
114 | "zone.js": "^0.7.2",
|
115 | "rimraf": "^2.6.2"
|
116 | },
|
117 | "jest": {
|
118 | "roots": [
|
119 | "src"
|
120 | ],
|
121 | "transform": {
|
122 | "^.+\\.ts$": "<rootDir>/jest-typescript.js"
|
123 | },
|
124 | "setupTestFrameworkScriptFile": "<rootDir>/jest-setup.js",
|
125 | "moduleFileExtensions": [
|
126 | "ts",
|
127 | "js"
|
128 | ],
|
129 | "testRegex": "\\.spec\\.ts$"
|
130 | }
|
131 | }
|