forked from urish/ngx-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.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
{
"name": "ngx-moment",
"version": "2.0.0",
"description": "Moment.JS pipes for Angular (timeago and more)",
"scripts": {
"build": "ng build",
"test": "ng lint && jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand",
"prepublish": "ng build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urish/ngx-moment.git"
},
"keywords": [
"angular",
"timeago",
"momentjs"
],
"author": "Uri Shaked",
"license": "MIT",
"bugs": {
"url": "https://github.com/urish/ngx-moment/issues"
},
"homepage": "https://github.com/urish/ngx-moment#readme",
"peerDependencies": {
"@angular/common": ">=2.0.0 <7.0.0",
"@angular/core": ">=2.0.0 <7.0.0"
},
"dependencies": {
"moment": "^2.19.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.5.0",
"@angular-devkit/build-ng-packagr": "~0.5.0",
"@angular/cli": "~6.0.0-rc.3",
"@angular/common": "^6.0.0-rc.3",
"@angular/compiler": "^6.0.0-rc.3",
"@angular/compiler-cli": "^6.0.0-rc.3",
"@angular/core": "^6.0.0-rc.3",
"@angular/language-service": "^6.0.0-rc.1",
"@angular/platform-browser": "^6.0.0-rc.3",
"@types/jest": "^22.2.3",
"core-js": "^2.5.4",
"jest": "^22.4.3",
"ng-packagr": "^2.4.1",
"rxjs": "^6.0.0-rc.0",
"ts-jest": "^22.4.2",
"tsickle": ">=0.25.5",
"tslib": "^1.7.1",
"tslint": "~5.9.1",
"typescript": "~2.7.2",
"zone.js": "^0.8.24"
},
"jest": {
"roots": [
"src"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "\\.spec\\.ts$"
}
}