-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"author": "Guy Ellis <[email protected]>",
"bugs": {
"url": "https://github.com/guyellis/nth-day/issues"
},
"dependencies": {
"moment": "2.22.2"
},
"description": "Find the nth day (e.g. 3rd Tuesday) in any month",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"babel-register": "6.26.0",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-security": "1.4.0",
"jest": "23.5.0",
"pre-commit": "1.2.2",
"rimraf": "3.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/guyellis/nth-day#readme",
"keywords": [
"date",
"utility",
"nth",
"day"
],
"license": "MIT",
"main": "lib/nth-day.js",
"name": "nth-day",
"pre-commit": {
"colors": true,
"run": [
"lint",
"test"
],
"silent": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/guyellis/nth-day.git"
},
"scripts": {
"build": ". scripts/build.sh",
"coverage": "jest --coverage",
"lint": "eslint --ext .js .",
"lintfix": "eslint --fix --ext .js .",
"prepublishOnly": "npm run build",
"test": "npm run coverage"
},
"version": "3.0.0"
}