forked from getgauge/taiko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "taiko",
"version": "0.7.0",
"description": "An easy to use wrapper over Chrome Remote Interface.",
"main": "bin/taiko.js",
"bin": {
"taiko": "bin/taiko.js"
},
"scripts": {
"format": "js-beautify lib/*.js test/*.js -r -b collapse,preserve-inline && npm run lint",
"lint": "eslint bin/*.js lib/*.js test/*/*.js",
"doc-new": "documentation build lib/taiko.js -f md --shallow -o docs/index.md --markdown-toc=false && node docs/setup.js --new",
"doc": "documentation build lib/taiko.js -f md --shallow -o docs/index.md --markdown-toc=false && node docs/setup.js",
"test": "node test/unit-tests/taiko-test.js && npm run lint",
"test-functional": "cd test/functional-tests && npm install && npm test",
"install": "node lib/install.js",
"update-json-doc": "node build/updateJsonDoc.js"
},
"pre-commit": [
"test",
"update-json-doc"
],
"repository": {
"type": "git",
"url": "https://github.com/getgauge/taiko"
},
"keywords": [
"headless",
"headless-chrome",
"headless-testing",
"headless-browser"
],
"taiko": {
"chromium_revision": "637110",
"chromium_version": "74.0.3723.0"
},
"author": "getgauge",
"license": "MIT",
"dependencies": {
"babylon": "^6.18.0",
"chrome-remote-interface": "^0.27.1",
"commander": "^2.19.0",
"debug": "^4.1.1",
"extract-zip": "^1.6.6",
"fs-extra": "^7.0.1",
"https-proxy-agent": "^2.2.1",
"progress": "^2.0.3",
"proxy-from-env": "^1.0.0",
"recast": "^0.17.2",
"repl.history": "^0.1.4",
"rimraf": "^2.6.1"
},
"devDependencies": {
"documentation": "^9.1.1",
"eslint": "^5.12.1",
"js-beautify": "^1.8.9",
"markdown-styles": "^3.1.10",
"marked": "^0.6.0",
"pre-commit": "^1.2.2"
}
}