-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.91 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
{
"name": "moment-relative-range",
"version": "0.16.1",
"description": "Calculate a date range in the past from a certain moment",
"main": "lib/relative-range.js",
"scripts": {
"build": "babel src -d lib && require-self",
"cover": "istanbul cover --report lcovonly _mocha -- -R spec --require babel-core/register './tests/**/*.js'",
"coverage": "npm run cover && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"doctoc": "doctoc --title=**Contents** README.md",
"flow": "flow check",
"lint": "eslint ./src ./tests",
"mocha": "npm run build -s && _mocha -R spec --require babel-core/register './tests/**/*.js'",
"prepublish": "npm test -s && npm run doctoc -s",
"start": "npm run build -s -- -w",
"test": "npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/Swydo/moment-relative-range.git"
},
"keywords": [
"moment",
"range",
"relative",
"date",
"previous",
"current"
],
"author": "Michiel ter Reehorst",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/Swydo/moment-relative-range/issues"
},
"homepage": "https://github.com/Swydo/moment-relative-range",
"peerDependencies": {
"moment": "2.x"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.22.1",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-env": "^1.1.8",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"doctoc": "1.4.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-flowtype": "^4.0.0",
"eslint-plugin-import": "^2.20.0",
"flow-bin": "^0.125.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^7.0.1",
"moment": "2.26.0",
"moment-range": "^4.0.2",
"require-self": "^0.2.1"
},
"engines": {
"npm": ">=3"
}
}