This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
61 lines (61 loc) · 2.05 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
{
"description": "Unified testing framework",
"author": "QlikTech International AB",
"private": true,
"license": "MIT",
"scripts": {
"test": "yarn test:node && yarn test:chrome && yarn test:protractor && yarn test:puppeteer && yarn test:protractor:multi",
"test:node": "aw -c aw.config.js",
"test:chrome": "aw chrome -c aw.config.js",
"test:protractor": "aw protractor -c aw.config.js",
"test:protractor:multi": "aw protractor -c examples/protractor/aw.config.multi.js",
"test:protractor:rendering": "aw protractor -c examples/protractor/aw.config.rendering.js",
"test:puppeteer": "aw puppeteer -c aw.config.js --httpServer",
"test:coveralls": "aw -c aw.config.js && cat coverage/lcov.info | coveralls",
"lint": "lerna run lint"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:qlik-oss/after-work.js.git"
},
"devDependencies": {
"@after-work.js/cdp": "7.0.0-alpha.1",
"@after-work.js/cli": "7.0.0-alpha.1",
"@after-work.js/node": "7.0.0-alpha.1",
"@after-work.js/protractor": "7.0.0-alpha.1",
"@after-work.js/puppeteer": "7.0.0-alpha.1",
"@after-work.js/serve": "7.0.0-alpha.1",
"@babel/core": "7.11.5",
"@babel/plugin-transform-react-jsx": "7.10.4",
"@babel/preset-env": "7.11.5",
"@types/chai": "4.2.12",
"@types/mocha": "8.0.3",
"babel-plugin-istanbul": "6.0.0",
"coveralls": "3.1.0",
"eslint": "7.8.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"globby": "11.0.1",
"lerna": "3.22.1",
"markdown-table": "2.0.0",
"prettier": "2.1.1",
"protractor": "7.0.0",
"requirejs": "2.3.6",
"typescript": "4.0.2",
"webdriver-manager": "^12.1.7",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"yargs": "16.0.3"
},
"workspaces": [
"commands/*",
"examples/*",
"packages/*",
"plugins/*"
]
}