-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.26 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
{
"name": "qape",
"version": "0.10.2",
"description": "Monkey testing library",
"main": "lib/exports.js",
"scripts": {
"test": "jest src",
"test:prerelease": "utils/tests/release/test.sh",
"docker:release": "utils/docker/release.sh",
"docs:build:config": "node utils/docs/config.js",
"docs:build:devs": "documentation build src/** --github -f md -o docs/devs/documentation.md",
"docs:build": "npm run docs:build:devs && npm run docs:build:config",
"docs:lint": "documentation lint src/**",
"changelog": "auto-changelog -l false -p",
"build": "rm -rf lib && babel src --out-dir lib --ignore \"**/__tests__/*\" --copy-files",
"dev": "npm run build -- --verbose --source-maps --watch",
"start": "node -r source-map-support/register bin/qape.js",
"preversion": "npm test && npm run docs:lint && npm run build",
"version": "npm run changelog && npm run docs:build && git add CHANGELOG.md docs",
"postversion": "git push origin master && git push --tags && npm publish && npm run docker:release",
"lint": "node_modules/.bin/eslint src --ext .js"
},
"bin": {
"qape": "./bin/qape.js"
},
"keywords": [
"autonomous",
"testing",
"e2e",
"end-2-end",
"end-to-end",
"user",
"simulator",
"monkey",
"automatic",
"robot",
"bot",
"testingbot",
"quality",
"assurance",
"qa",
"puppeteer",
"chrome"
],
"repository": {
"type": "git",
"url": "https://github.com/seznam/qape.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Filip Satek <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "9.2.0",
"faker": "5.4.0",
"glob-all": "3.3.0",
"lodash": "4.17.21",
"puppeteer": "13.6.0"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.9",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-transform-modules-commonjs": "7.17.9",
"auto-changelog": "2.4.0",
"documentation": "13.2.5",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.5",
"eslint-plugin-prettier": "4.0.0",
"jest": "28.0.0",
"prettier": "2.6.2",
"source-map-support": "0.5.21",
"verdaccio": "5.9.0"
}
}