-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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": "@cypress/xvfb",
"version": "0.0.0-development",
"private": false,
"author": "Rob Wu <[email protected]> (https://robwu.nl)",
"contributors": [
"ProxV, Inc. <[email protected]> (http://proxv.com)"
],
"description": "Easily start and stop an X Virtual Frame Buffer from your node apps.",
"publishConfig": {
"registry": "http://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/xvfb.git"
},
"dependencies": {
"debug": "4.3.1"
},
"main": "index.js",
"files": [
"index.js"
],
"license": "MIT",
"scripts": {
"test": "eslint **/*.js && mocha",
"test-watch": "mocha watch",
"semantic-release": "semantic-release",
"commit": "commit-wizard",
"demo": "node ./demo",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
},
"devDependencies": {
"bluebird": "3.5.1",
"chai": "4.1.2",
"eslint": "4.19.1",
"eslint-plugin-cypress-dev": "1.1.2",
"eslint-plugin-mocha": "4.12.1",
"husky": "1.0.1",
"mocha": "8.3.2",
"npm-utils": "2.0.3",
"semantic-release": "17.3.8",
"sinon": "10.0.0"
},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "break",
"release": "major"
}
]
}
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm run size"
}
}
}