-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.99 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
{
"name": "@testingrequired/webdriver",
"version": "0.0.2",
"description": "A webdriver library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"prestart": "npm run build",
"start": "node -r esm ./bin/cli",
"prepublishOnly": "npm run verify && npm run build",
"pack-preview": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"test": "jest",
"verify": "npm run test && npm start",
"codecov": "codecov",
"selenium": "selenium-standalone"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testingrequired/webdriver.git"
},
"keywords": [],
"author": "Kylee Tilley <kylee@testingrequired.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/testingrequired/webdriver/issues"
},
"homepage": "https://github.com/testingrequired/webdriver#readme",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.17",
"@types/node-fetch": "^2.5.4",
"@types/uuid": "^7.0.3",
"codecov": "^3.6.1",
"jest": "^25.4.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@babel/runtime": "^7.7.6",
"esm": "^3.2.25",
"node-fetch": "^2.6.0",
"selenium-standalone": "^6.17.0",
"uuid": "^7.0.3",
"yargs": "^15.0.2"
}
}