-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.35 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
58
59
60
61
62
63
{
"name": "rpa-doc",
"version": "1.0.6",
"description": "A CLI app to help document UiPath projects developed by the Flinders RPA team",
"main": "index.js",
"scripts": {
"test": "mocha --require esm",
"lint": "eslint .",
"docs": "jsdoc -c .jsdocrc.json",
"coverage": "c8 mocha --require esm"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/flindersuni/rpa-doc.git"
},
"keywords": [
"rpa",
"robotic-process-automation",
"uipath",
"university",
"academic"
],
"bin": {
"rpa-doc": "bin/rpa-doc"
},
"author": "Corey Wallis <corey.wallis@flinders.edu.au>",
"license": "BSD-3-Clause",
"devDependencies": {
"c8": "^7.7.2",
"eslint": "^7.27.0",
"eslint-config-jquery": "^3.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-security": "^1.4.0",
"jsdoc": "^3.6.7",
"mocha": "^8.4.0"
},
"dependencies": {
"chalk": "^4.1.1",
"commander": "^7.2.0",
"coveralls": "^3.1.0",
"esm": "^3.2.25",
"glob": "^7.1.7",
"pretty-ms": "^7.0.1",
"xmldom": "^0.6.0",
"xpath": "0.0.32"
},
"directories": {
"test": "test",
"doc": "doc"
},
"esm": {
"cjs": true
},
"mocha": {
"require": [
"esm"
],
"recursive": true
}
}