-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.03 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.03 KB
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
{
"name": "@automationcloud/engine",
"version": "35.13.11",
"description": "Engine for running Automation Scripts",
"main": "out/main/index.js",
"types": "out/main/index.d.ts",
"scripts": {
"clean": "rm -rf out",
"compile": "npm run clean && tsc",
"compile:peg": "pegjs src/main/engine/grammars/*.peg",
"dev": "npm run clean && tsc -b -w",
"lint": "eslint . --ext=.js,.ts --cache",
"test": "run-s test:*",
"test:cdp": "NODE_ENV=test mocha './out/test/cdp/**/*.test.js'",
"test:engine": "NODE_ENV=test mocha './out/test/engine/**/*.test.js'",
"preversion": "npm run lint && npm run compile",
"postversion": "npm publish --access public && git push origin main --tags"
},
"pre-commit": [
"lint"
],
"files": [
"out/main/**/*",
"ca.crt",
"chrome-extensions"
],
"dependencies": {
"@koa/multer": "^3.0.2",
"@types/diacritics": "^1.3.1",
"@types/dotenv": "^8.2.0",
"@types/fast-levenshtein": "^0.0.2",
"@types/glob": "^8.0.0",
"@types/jsonpointer": "^4.0.0",
"@types/koa__multer": "^2.0.4",
"@types/node-fetch": "^2.6.2",
"@types/rimraf": "^3.0.2",
"@types/sanitize-html": "^2.8.0",
"@types/semver": "^7.3.13",
"@types/tar": "^6.1.3",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.3",
"@ubio/request": "^3.7.0",
"@ubio/uniproxy": "^2.4.0",
"ajv": "^6.12.6",
"diacritics": "^1.3.0",
"dotenv": "^16.0.3",
"fast-json-stable-stringify": "^2.1.0",
"fast-levenshtein": "^3.0.0",
"form-data": "^4.0.0",
"glob": "^8.0.3",
"inversify": "^6.0.1",
"json5": "^2.2.2",
"jsonpointer": "^5.0.1",
"moment": "^2.29.4",
"node-fetch": "^2.6.7",
"parse-color": "^1.0.0",
"playwright": "^1.42.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sanitize-html": "^2.8.0",
"semver": "^7.3.8",
"tar": "^6.1.13",
"uuid": "^9.0.0",
"ws": "^8.11.0"
},
"devDependencies": {
"@nodescript/eslint-config": "^1.0.4",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-static": "^4.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.15",
"@types/sinon": "^17.0.3",
"eslint": "^8.29.0",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-router2": "^1.3.1",
"koa-static": "^5.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"pegjs": "^0.10.0",
"pre-commit": "^1.2.2",
"sinon": "^17.0.1",
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubio/engine.git"
},
"author": "Ubio",
"license": "ISC",
"bugs": {
"url": "https://github.com/ubio/engine/issues"
},
"homepage": "https://github.com/ubio/engine#readme"
}