-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 4.4 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "webdriver-query",
"version": "1.0.1",
"description": "Query whole pages, multiple objects, elements, forms, tables from Selenium WebDriver using a single query",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"babel": "babel",
"type-check": "tsc",
"build-node": "babel ./src --out-dir ./dist --extensions \".ts,.tsx\" -s --ignore \"./src/browser/**\"",
"build-node-typings": "tsc --project ./tsconfig.node.json",
"pack": "webpack",
"prebuild": "yarn run lint && yarn run type-check && rimraf ./dist && yarn run build-node && yarn run build-node-typings",
"jest": "jest",
"build": "webpack",
"chromedriver": "chromedriver",
"lint": "tslint -p . --outputAbsolutePaths -t stylish",
"test": "jest --testPathIgnorePatterns \"__tests__/browser/.*\" --coverage --coveragePathIgnorePatterns \"src/node\" \"__tests__/utils\"",
"test-browsers-all": "yarn build && jest --testPathIgnorePatterns \"__tests__/browser-jsdom/.*\" --coverage --coveragePathIgnorePatterns \"src/browser\" \"__tests__/utils\" -i",
"test-browsers": "yarn build && jest --testPathIgnorePatterns \"__tests__/browser-jsdom/.*\" \"__tests__/browser/.*slow.*\" \"__tests__/browser/examples/.*\" --coverage --coveragePathIgnorePatterns \"src/browser\" \"__tests__/utils\" -i",
"test-all": "jest --coverage",
"run-examples": "yarn run test-all -- -i --testPathPattern \"__tests__/browser/examples/.*\" --no-coverage --verbose",
"run-examples-query": "yarn run test-all -- -i --testPathPattern \"__tests__/browser/examples/.*\" --testNamePattern \"query api\" --no-coverage --verbose",
"run-examples-driver": "yarn run test-all -- -i --testPathPattern \"__tests__/browser/examples/.*\" --testNamePattern \"driver api\" --no-coverage --verbose",
"prettier": "prettier",
"prepublishOnly": "yarn run build",
"semantic-release": "semantic-release"
},
"author": "@zaripych",
"license": "MIT",
"keywords": [
"webdriver",
"selenium",
"query",
"batch"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zaripych/webdriver-query.git"
},
"files": [
"src",
"dist"
],
"bugs": {
"url": "https://github.com/zaripych/webdriver-query/issues"
},
"homepage": "https://github.com/zaripych/webdriver-query#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {},
"peerDependencies": {
"selenium-webdriver": ">= 3.6.0"
},
"devDependencies": {
"@babel/cli": "7.1.0",
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-typescript": "7.1.0",
"@babel/runtime": "7.0.0",
"@commitlint/cli": "7.3.1",
"@commitlint/config-conventional": "7.3.1",
"@semantic-release/git": "7.0.7",
"@types/jest": "22.2.3",
"@types/jquery": "3.2.16",
"@types/node": "9.6.6",
"@types/selenium-webdriver": "3.0.8",
"@types/semver": "5.5.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.2",
"chromedriver": "2.41.0",
"css.escape": "1.5.1",
"escape-string-regexp": "1.0.5",
"geckodriver": "1.12.2",
"husky": "1.3.1",
"jest": "23.6.0",
"jquery": "3.3.1",
"jsdom": "11.6.2",
"prettier": "1.15.2",
"prettier-tslint": "0.4.0",
"rimraf": "2.6.1",
"selenium-webdriver": "3.6.0",
"semantic-release": "15.12.1",
"semver": "5.6.0",
"ts-jest": "22.4.4",
"ts-loader": "4.2.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"typescript": "2.9.2",
"webpack": "4.6.0",
"webpack-cli": "2.0.15"
},
"jest": {
"testURL": "http://localhost/",
"setupFiles": [],
"testMatch": [
"**/__tests__/**/*.test.ts",
"**/__tests__/**/browser/**/*.test.ts",
"**/__tests__/**/browser-jsdom/*.test.ts",
"**/__tests__/**/node/*.test.ts",
"**/__tests__/**/shared/*.test.ts"
],
"transform": {
"^.+\\.(js|ts)x?$": "babel-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup.js",
"moduleFileExtensions": [
"js",
"ts"
],
"coverageDirectory": ".output",
"coveragePathIgnorePatterns": [
"__tests__/utils"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}