-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 826 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 826 Bytes
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": "@typecasting/rpscript-api-robotjs",
"version": "0.1.0",
"description": "Robotjs API for RPScript",
"keywords": [
"api",
"rpa",
"rpscript",
"robotjs"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "Apache-2.0",
"author": "James Chong",
"repository": {
"type": "git",
"url": "https://github.com/wei3hua2/rpscript-api-robotjs.git"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"test": "mocha -r ts-node/register test/**.ts"
},
"dependencies": {
"ramda": "^0.25.0",
"robotjs": "^0.5.1",
"rpscript-interface": "^0.6.1"
},
"devDependencies": {
"chai": "^4.1.2",
"@types/chai": "^4.1.4",
"@types/node-notifier": "0.0.28",
"mocha": "^5.2.0",
"ts-node": "^6.0.5",
"typescript": "^2.8.3"
}
}