-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathpackage.json
93 lines (93 loc) · 2.7 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
{
"$schema": "http://json.schemastore.org/package",
"name": "taiko",
"version": "1.0.18",
"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 ts,tsx .",
"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",
"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}": [
"npm run lint",
"git add"
]
},
"taiko": {
"chromium_revision": "791688",
"chromium_version": "86.0.4214.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": "^4.0.0",
"progress": "^2.0.3",
"proxy-from-env": "^1.0.0",
"recast": "^0.19.0"
},
"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",
"documentation": "^13.0.2",
"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": "^23.1.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"markdown-it": "^11.0.0",
"markdown-it-anchor": "^5.3.0",
"mocha": "^8.0.1",
"prettier": "^2.0.1",
"rewire": "^5.0.0",
"sinon": "^9.0.1",
"typescript": "^3.8.3"
}
}