-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
69 lines (69 loc) · 1.75 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
{
"name": "asyncbox",
"description": "A collection of small async/await utilities",
"tags": [
"async/await",
"es7",
"async"
],
"version": "2.9.3",
"author": "[email protected]",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/jlipps/asyncbox.git"
},
"bugs": {
"url": "https://github.com/jlipps/asyncbox/issues"
},
"engines": {
"node": ">=16"
},
"main": "./build/lib/asyncbox.js",
"bin": {},
"directories": {
"lib": "./lib"
},
"files": [
"lib/**/*.js",
"build/lib/**/*"
],
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "^4.17.4",
"source-map-support": "^0.x"
},
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"rebuild": "npm run clean; npm run build",
"dev": "npm run build -- --watch",
"prepare": "npm run rebuild",
"test": "mocha --exit --timeout 1m \"./test/**/*-specs.js\"",
"lint": "eslint .",
"watch": "npm run dev"
},
"devDependencies": {
"@appium/eslint-config-appium": "^8.0.4",
"@appium/eslint-config-appium-ts": "^0.x",
"@appium/tsconfig": "^0.x",
"@types/bluebird": "^3.5.37",
"@types/lodash": "^4.14.189",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.0.0",
"sinon": "^16.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"types": "./build/lib/asyncbox.d.ts"
}