-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "time-ago-pipe",
"version": "1.3.2",
"description": "A really simple, lightweight Angular pipe for converting a date string into a time ago",
"scripts": {
"build": "ng-packagr -p package.json",
"test": "mocha --reporter spec --require ts-node/register test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewPoyntz/time-ago-pipe.git"
},
"keywords": [
"Angular2",
"timeago",
"pipe"
],
"author": "Andrew <[email protected]> (http://www.andrewpoyntz.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewPoyntz/time-ago-pipe/issues"
},
"homepage": "https://github.com/AndrewPoyntz/time-ago-pipe#readme",
"engines": {
"node": ">=4.2.4"
},
"devDependencies": {
"@angular/compiler": "^5.2.3",
"@angular/compiler-cli": "^5.2.3",
"@angular/core": "^5.2.3",
"@types/mocha": "^2.2.32",
"@types/node": "^9.4.5",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"ng-packagr": "^2.0.0",
"rxjs": "^5.5.6",
"sinon": "^4.3.0",
"ts-node": "^4.1.0",
"tsickle": "^0.26.0",
"typescript": "2.6.x",
"zone.js": "^0.8.20"
},
"ngPackage": {
"lib": {
"entryFile": "time-ago.pipe.ts"
}
}
}