-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1011 Bytes
/
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
{
"name": "@rickyli79/webdriver-async-runner",
"version": "1.0.3",
"description": "Solution for webdriver safty executeAsyncScript, handling errors.",
"main": "bin/index.js",
"keywords": [ "webdriver", "executeAsyncScript" ],
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/RickyLi79/webdriver-async-runner/"
},
"author": {
"email": "382688672@qq.com",
"name": "RickyLi79",
"url": "https://github.com/RickyLi79"
},
"license": "MIT",
"scripts": {
"test": "mocha -r ts-node/register --reporter spec --no-timeouts --colors test/**/*.test.ts",
"build": "tsc -p tsconfig/tsconfig.build.json"
},
"devDependencies": {
"@types/chai": "4.3.12",
"@types/mocha": "10.0.6",
"@types/node": "~16.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"chai": "4.3.9",
"eslint-config-egg": "^13.1.0",
"mocha": "10.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"files": [
"bin"
]
}