forked from getgauge/taiko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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": "taiko",
"version": "1.0.1",
"description": "An easy to use wrapper over Chrome Remote Interface.",
"main": "bin/taiko.js",
"bin": {
"taiko": "bin/taiko.js"
},
"scripts": {
"lint": "eslint bin/*.js lib/*.js test/*/*.js",
"doc": "node docs/generateDocSearch.js && documentation build lib/taiko.js -f md --shallow -o docs/index.md --markdown-toc=false && node docs/setup.js",
"test:api": "node test/unit-tests/taiko-test.js",
"examples": "cd examples && npm install && npm test",
"test:unit": "mocha \"test/unit-tests/**/*.test.js\" --timeout 30000",
"test": "npm run lint && npm run test:api && npm run test:unit",
"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:api",
"lint",
"update-json-doc"
],
"repository": {
"type": "git",
"url": "https://github.com/getgauge/taiko"
},
"keywords": [
"headless",
"headless-chrome",
"headless-testing",
"headless-browser"
],
"taiko": {
"chromium_revision": "662092",
"chromium_version": "76.0.3803.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": "^8.0.1",
"https-proxy-agent": "^2.2.1",
"progress": "^2.0.3",
"proxy-from-env": "^1.0.0",
"recast": "^0.18.1",
"rimraf": "^2.6.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"documentation": "^12.0.1",
"eslint": "^5.15.1",
"eslint-plugin-jest": "^22.5.1",
"handlebars": "^4.1.2",
"marked": "^0.7.0",
"mocha": "^6.1.4",
"pre-commit": "^1.2.2",
"rewire": "^4.0.1"
}
}