forked from felipeespitalher/taiko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "taiko",
"version": "1.0.3",
"description": "An easy to use wrapper over Chrome Remote Interface.",
"main": "bin/taiko.js",
"bin": {
"taiko": "bin/taiko.js"
},
"scripts": {
"lint": "prettier --write '**/*.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 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"
},
"repository": {
"type": "git",
"url": "https://github.com/getgauge/taiko"
},
"keywords": [
"headless",
"headless-chrome",
"headless-testing",
"headless-browser"
],
"lint-staged": {
"**/*.{js}": [
"npm run lint",
"git add"
]
},
"taiko": {
"chromium_revision": "706915",
"chromium_version": "79.0.3945.16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test:api && npm run update-json-doc",
"pre-push": "npm test"
}
},
"author": "getgauge",
"license": "MIT",
"dependencies": {
"babylon": "^6.18.0",
"chrome-remote-interface": "^0.28.0",
"commander": "^4.0.0",
"debug": "^4.1.1",
"extract-zip": "^1.6.6",
"fs-extra": "^8.0.1",
"https-proxy-agent": "^3.0.1",
"progress": "^2.0.3",
"proxy-from-env": "^1.0.0",
"recast": "^0.18.5"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"documentation": "^12.1.3",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"handlebars": "^4.5.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"marked": "^0.7.0",
"mocha": "^6.2.2",
"prettier": "^1.15.3",
"rewire": "^4.0.1"
}
}