-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.65 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
{
"name": "wait-for-netlify-preview",
"version": "1.2.1",
"description": "Let you Travis CI wait for the Netlify build preview",
"main": "indx.js",
"license": "MIT",
"repository": "Developmint/wait-for-netlify-preview",
"scripts": {
"lint": "eslint index.js __test__",
"pretest": "yarn run lint",
"test": "jest --detectOpenHandles",
"release": "standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint -E HUSKY_GIT_PARAMS",
"coverage": "codecov"
},
"keywords": [
"netlify",
"travisci",
"ci",
"wait",
"preview"
],
"bugs": {
"url": "https://github.com/Developmint/wait-for-netlify-preview/issues"
},
"contributors": [
{
"name": "Alexander Lichter <[email protected]>"
}
],
"files": [
"index.js",
"main.js"
],
"bin": "index.js",
"dependencies": {
"@octokit/rest": "^16.25.4",
"consola": "^2.6.1",
"esm": "^3.2.22",
"p-wait-for": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@nuxtjs/eslint-config": "^0.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"bili": "^4.7.4",
"codecov": "^3.4.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.8.0",
"standard-version": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "yarn commitlint"
}
}
}