-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "ngx-moment",
"version": "6.0.2",
"description": "Moment.JS pipes for Angular (timeago and more)",
"scripts": {
"build": "ng build",
"test": "tslint --project tsconfig.lint.json && tsc -p tsconfig.spec.json && 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",
"prepare": "husky install",
"postinstall": "husky install"
},
"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": {
"moment": "^2.19.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.1.1",
"@angular/cli": "^13.1.1",
"@angular/common": "^13.1.0",
"@angular/compiler": "^13.1.0",
"@angular/compiler-cli": "^13.1.0",
"@angular/core": "^13.1.0",
"@angular/language-service": "^13.1.0",
"@angular/platform-browser": "^13.1.0",
"@angular/platform-browser-dynamic": "^13.1.0",
"@types/eslint": "^6.8.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.13",
"core-js": "^3.19.3",
"husky": "^7.0.0",
"jest": "^27.4.5",
"jest-preset-angular": "^11.0.1",
"lint-staged": "^12.1.2",
"moment": "^2.29.1",
"ng-packagr": "^13.1.1",
"prettier": "^2.5.1",
"rxjs": "^7.4.0",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"typescript": "~4.4.4",
"zone.js": "~0.11.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"tslint --project tsconfig.lint.json -c tslint.json --fix",
"prettier --write",
"git add"
]
}
}