-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
64 lines (64 loc) · 1.75 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
{
"name": "wendigo",
"version": "3.0.2",
"description": "A proper monster for front-end automated testing",
"engines": {
"node": ">=8.0.0"
},
"files": [
"injection_scripts",
"dist"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"test": "npm run tsc && mocha ./tests/**/*.test.js ./tests/hooks.js --exit --bail",
"dummy-server": "node tests/dummy_server/index.js",
"tsc": "rm -rf dist && tsc",
"prepublishOnly": "npm run lint && npm test",
"lint": "npm run lint-ts && npm run lint-js && npm run markdown-lint",
"lint-js": "eslint -c .eslintrc-js.js . --ext .js",
"lint-ts": "eslint -c .eslintrc-ts.js . --ext .ts",
"markdown-lint": "markdownlint -c .markdownlint.json ./*.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angrykoala/wendigo.git"
},
"keywords": [
"headless",
"test",
"frontend",
"browser",
"automation",
"chrome",
"chromium"
],
"author": "angrykoala <angrykoala@outlook.es>",
"license": "MIT",
"bugs": {
"url": "https://github.com/angrykoala/wendigo/issues"
},
"homepage": "https://github.com/angrykoala/wendigo#readme",
"dependencies": {
"compositer": "^1.3.6",
"is-class": "0.0.9",
"lodash.isregexp": "^4.0.1",
"puppeteer": "~13.3.1"
},
"devDependencies": {
"@types/lodash.isregexp": "^4.0.6",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"basic-auth": "^2.0.1",
"eslint": "^8.8.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"express": "^4.17.2",
"markdownlint-cli": "^0.31.1",
"mocha": "^9.2.0",
"sinon": "^13.0.1",
"typescript": "4.5.5"
}
}