-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 796 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 796 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
{
"name": "@typecasting/rpscript-api-notifier",
"version": "0.4.2",
"description": "Notifier API for RPScript",
"keywords": [
"api",
"rpa",
"rpscript"
],
"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-notifier.git"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"test": "mocha -r ts-node/register test/**.ts"
},
"dependencies": {
"node-notifier": "^5.2.1",
"rpscript-interface": "^0.6.2"
},
"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"
}
}