-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.55 KB
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
{
"name": "relative-time-parser",
"version": "1.1.5",
"description": "A moment.js plugin to convert relative time string into a moment.js object",
"main": "./src/relative.time.parser.js",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "grunt test",
"coverage": "nyc --reporter lcov --reporter text npm test",
"lint": "eslint ./src/relative.time.parser.js",
"semantic-release": "semantic-release"
},
"keywords": [
"moment",
"moment.js",
"date",
"graphite",
"parse",
"relative",
"time"
],
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/cmaurer/relative.time.parser.git"
},
"bugs": {
"url": "https://github.com/cmaurer/relative.time.parser/issues"
},
"author": "Christian Maurer <chris_p_maurer@yahoo.com>",
"license": "MIT",
"dependencies": {
"moment": "^2.30.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"assert": "^2.1.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-eslint": "^24.3.0",
"grunt-mocha-nyc": "^1.0.3",
"grunt-mocha-test": "^0.13.3",
"mocha": "^11.7.5",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^17.1.0",
"semantic-release": "^24.2.3",
"should": "^13.2.3"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
}
}