-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "netlify-deployment-hours-plugin",
"version": "1.0.14",
"description": "Block deployment if outside of deployment hours.",
"main": "src/index.js",
"scripts": {
"deploy": "publish",
"lint": "eslint --ignore-pattern .gitignore **/*.js",
"test": "nyc --reporter=html --reporter=text mocha --recursive test/",
"test:coverage": "nyc report --reporter=text-lcov | coveralls",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neverendingqs/netlify-deployment-hours-plugin.git"
},
"keywords": [
"netlify",
"netlify-plugin",
"netlify-build-plugin"
],
"author": "neverendingqs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neverendingqs/netlify-deployment-hours-plugin/issues"
},
"homepage": "https://github.com/neverendingqs/netlify-deployment-hours-plugin#readme",
"dependencies": {
"cron-allowed-range": "0.0.42"
},
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.21.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"publish-me-maybe": "^1.0.11",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
}
}