-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
69 lines (69 loc) · 1.78 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
64
65
66
67
68
69
{
"name": "luxon-business-days",
"version": "3.0.1",
"description": "Luxon plugin to manipulate time through business days",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"test": "jest --collect-coverage",
"test:watch": "NODE_ENV=test jest --watch --coverage=false",
"test:coverage": "NODE_ENV=test jest --collect-coverage",
"test:ci": "jest --collect-coverage",
"docs": "jsdoc2md --template README.hbs --files src/*.js > README.md",
"clean": "rimraf dist",
"build": "webpack",
"prepare": "npm run clean && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git https://github.com/amaidah/luxon-business-days.git"
},
"keywords": [
"luxon",
"business",
"days",
"plugin",
"biz",
"moment",
"momentjs"
],
"author": "Andrew Maidah <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/amaidah/luxon-business-days/issues"
},
"homepage": "https://github.com/amaidah/luxon-business-days#readme",
"peerDependencies": {
"luxon": "3.x.x"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"babel-loader": "^8.2.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jsdoc-to-markdown": "^6.0.1",
"lint-staged": "^9.5.0",
"luxon": "^3.0.3",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run docs && lint-staged && npm run test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add ."
]
},
"dependencies": {}
}