-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 987 Bytes
/
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
{
"name": "timestring",
"version": "7.0.0",
"description": "Parse a human readable time string into a time based value",
"main": "index.js",
"scripts": {
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -x test.js test.js",
"dev": "watch 'clear; npm test -s;' ./ -d",
"lint": "standard *.js",
"test": "mocha test.js"
},
"author": "Michael David Barrett <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mike182uk/timestring.git"
},
"homepage": "https://github.com/mike182uk/timestring",
"bugs": {
"url": "https://github.com/mike182uk/timestring/issues"
},
"keywords": [
"time",
"timestring",
"duration",
"date"
],
"engines": {
"node": ">=12"
},
"devDependencies": {
"chai": "^4.3.7",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "1.3.0",
"standard": "^17.0.0",
"watch": "^1.0.2"
}
}