-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.92 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
{
"name": "uipath-orchestrator-api-node",
"version": "0.8.3",
"description": "UiPath Orchestrator API wrapper for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev --respawn src/index.ts",
"lint": "tslint --fix --project tsconfig.json",
"clean:module": "rimraf node-modules/* package-lock.json",
"clean": "rimraf dist/*",
"tsc": "tsc",
"build": "npm-run-all clean tsc && npm run copy-files",
"copy-files": "cpx src/**/*.xlsx dist",
"pack": "npm pack",
"start": "node .",
"test": "NODE_ENV= jest --coverage --runInBand",
"prepublish": "npm run build"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.spec.+(ts|tsx|js)"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/masatomix/uipath-orchestrator-api-node.git"
},
"keywords": [
"uipath",
"rpa"
],
"author": "Masatomi KINO",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/masatomix/uipath-orchestrator-api-node/issues"
},
"homepage": "https://github.com/masatomix/uipath-orchestrator-api-node#readme",
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/config": "0.0.36",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/request": "^2.48.5",
"cpx": "^1.5.0",
"jest": "^26.2.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.56",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"bunyan": "^1.8.14",
"config": "^3.3.1",
"excel-csv-read-write": "^0.1.5",
"request": "^2.88.2"
}
}