-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "@openiap/openflow-api",
"version": "2.1.12",
"description": "",
"files": [
"lib/**/*"
],
"main": "./lib/node/index.js",
"module": "./lib/node/index.js",
"types": "./lib/node/index.d.ts",
"typings": "./lib/node/index.d.ts",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/open-rpa/openflow-api.git"
},
"publishConfig": {
"access": "public"
},
"author": "OpenRPA / Allan Zimmermann",
"license": "MPL-2.0",
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p src/tsconfig.json",
"test": "ts-mocha --paths -p test/tsconfig.json .\\test\\*.test.ts",
"coverage": "clear | nyc ts-mocha --paths -p test/tsconfig.json .\\test\\*.test.ts",
"build": "tsc -p src/tsconfig.json",
"watch": "tsc -w -p src/tsconfig.json"
},
"homepage": "https://github.com/open-rpa/openflow-api",
"funding": "https://github.com/sponsors/skadefro",
"dependencies": {
"envfile": "^6.9.0",
"fs-extra": "^9.0.1",
"ramda": "^0.27.1",
"universal-websocket-client": "^1.0.2"
},
"devDependencies": {
"@testdeck/mocha": "0.1.2",
"@types/mocha": "8.2.2",
"@types/node": "^14.0.19",
"browserify": "^16.5.1",
"dotenv": "^10.0.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"merge-stream": "^2.0.0",
"mocha": "^9.1.3",
"prettier": "^2.0.5",
"ts-mockito": "^2.6.1",
"ts-node": "^10.0.0",
"tsify": "^4.0.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.6",
"wtfnode": "^0.9.1"
}
}