forked from angrykoala/wendigo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "wendigo",
"version": "0.7.6",
"description": "A proper monster for front-end automated testing",
"engines": {
"node": ">=8.0.0"
},
"files": [
"injection_scripts",
"lib",
"config.js"
],
"main": "lib/wendigo.js",
"scripts": {
"test": "mocha tests --recursive --exit --retries 2",
"lint": "eslint lib/ tests/ --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angrykoala/wendigo.git"
},
"keywords": [
"headless",
"test",
"frontend",
"browser",
"automation",
"chrome"
],
"author": "angrykoala <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/angrykoala/wendigo/issues"
},
"homepage": "https://github.com/angrykoala/wendigo#readme",
"dependencies": {
"compositer": "^1.2.0",
"deep-equal": "^1.0.1",
"mixwith": "^0.1.1",
"puppeteer": "^1.5.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"express": "^4.16.3",
"mocha": "^5.2.0"
}
}