-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.64 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
{
"name": "puppyjs",
"version": "1.2.24",
"description": "puppeteer + jest + awesome-code = puppyjs",
"main": "index.js",
"scripts": {
"docs:dev": "vuepress dev website",
"docs:build": "vuepress build website",
"test": "node bin/puppy.js test --headless --",
"test-verbose": "node bin/puppy.js test --headless --verbose --",
"release": "scripts/release.sh",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"bin": {
"puppy": "bin/puppy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelthe/puppyjs.git"
},
"author": "Michael Theodorides, Petros Kyriakou",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelthe/puppyjs/issues"
},
"homepage": "https://github.com/michaelthe/puppyjs#readme",
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"cors": "^2.8.5",
"event-stream": "3.3.4",
"express": "^4.16.4",
"express-ws": "^4.0.0",
"figlet": "^1.2.1",
"find-free-port": "^1.2.0",
"jest": "^23.4.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"node-fetch": "^2.3.0",
"puppeteer": "^1.10.0",
"rimraf": "^2.6.2",
"send": "^0.16.2"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"vuepress": "^0.14.8"
},
"keywords": [
"api",
"e2e",
"jest",
"mock",
"testing",
"puppeteer",
"end-to-end",
"automation",
"web sockets"
]
}