forked from getgauge/taiko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.09 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$schema": "http://json.schemastore.org/package",
"name": "taiko",
"version": "1.0.26",
"description": "Taiko is a Node.js library for automating Chromium based browsers",
"main": "bin/taiko.js",
"bin": {
"taiko": "bin/taiko.js"
},
"types": "./types/taiko/index.d.ts",
"scripts": {
"lint": "eslint --fix --ext js,ts .",
"dtslint": "node ./test/types-test-support/generate-types-test.js && eslint --fix --ext js,ts . && dtslint types/taiko",
"doc": "npm run doc:api && eleventy",
"doc:serve": "npm run doc:api && eleventy --serve",
"doc:api": "node lib/documentation.js",
"test:api": "node test/unit-tests/taiko-test.js",
"examples": "cd examples && npm install && npm test",
"test:unit:silent": "mocha 'test/unit-tests/**/*.test.js' --timeout 6000 -R dot --trace-warnings",
"test:unit": "mocha 'test/unit-tests/**/*.test.js' --timeout 6000 --trace-warnings",
"test": "npm run test:api && npm run test:unit:silent",
"test-functional": "cd test/functional-tests && npm install && npm test",
"test-docs": "cd test/docs-tests && node prepare.js && eleventy && cd ./gauge && npm install && npm test",
"install": "node lib/install.js",
"update-json-doc": "node build/updateJsonDoc.js",
"postinstall": "node lib/documentation.js"
},
"repository": {
"type": "git",
"url": "https://github.com/getgauge/taiko"
},
"keywords": [
"headless",
"headless-chrome",
"headless-testing",
"headless-browser"
],
"lint-staged": {
"**/*.{js,ts}": [
"npm run lint",
"git add"
]
},
"taiko": {
"chromium_revision": "811961",
"chromium_version": "87.0.4279.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test:api",
"pre-push": "npm test"
}
},
"author": "getgauge",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.9.4",
"chrome-remote-interface": "^0.28.1",
"commander": "^6.0.0",
"debug": "^4.1.1",
"extract-zip": "^2.0.0",
"fs-extra": "^9.0.0",
"https-proxy-agent": "^5.0.0",
"is-reachable": "^5.0.0",
"progress": "^2.0.3",
"proxy-from-env": "^1.0.0",
"recast": "^0.20.1",
"documentation": "^13.0.2"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cssnano": "^4.1.10",
"devtools-protocol": "0.0.822788",
"dtslint": "^4.0.0",
"eleventy-plugin-toc": "^1.0.1",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-no-instanceof": "file:./eslint-plugin-no-instanceof",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"markdown-it": "^12.0.0",
"markdown-it-anchor": "^6.0.0",
"mocha": "^8.0.1",
"ncp": "^2.0.0",
"prettier": "^2.0.1",
"rewire": "^5.0.0",
"sinon": "^9.0.1",
"typescript": "^4.0.2"
}
}