-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "rest-cli",
"version": "1.8.13",
"description": "",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"bin": "node dist/src/main.js",
"dev": "ts-node src/main.ts",
"test": "tape -r ts-node/register tests/*.test.ts | tap-spec",
"test-one": "tape -r ts-node/register",
"serve": "ts-node tests/app.ts",
"prepack": "tsc -b",
"build": "tsc -b",
"clean": "rm -r dist"
},
"files": [
"dist/src",
"README.md",
"LICENSE.md"
],
"bin": {
"restcli": "dist/src/main.js"
},
"repository": {
"type": "git",
"url": "github.com/gwillz/rest-cli"
},
"author": "Gwilyn Saunders",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/glob": "^7.1.1",
"@types/luxon": "^1.21.0",
"@types/node": "^13.1.7",
"@types/node-fetch": "^2.5.4",
"@types/tape": "^4.2.33",
"@types/uuid": "^3.4.6",
"@types/xml-formatter": "^1.1.0",
"@types/xmldom": "^0.1.29",
"express": "^4.17.1",
"tap-spec": "^5.0.0",
"tape": "^4.13.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.2",
"chalk": "^3.0.0",
"cli-highlight": "^2.1.4",
"dotenv": "^8.2.0",
"enquirer": "^2.3.6",
"fecha": "^4.0.0",
"glob": "^7.1.6",
"jsonpath-plus": "^2.0.0",
"luxon": "^1.21.3",
"node-fetch": "^2.6.1",
"source-map-support": "^0.5.16",
"uuid": "^3.4.0",
"xml-beautifier": "^0.4.3",
"xml-formatter": "^1.2.0",
"xpath": "0.0.27"
},
"rest-client.environmentVariables": {
"$shared": {
"id": "package"
},
"local": {
"password": "1234567890"
},
"production": {
"password": "REDACTED"
}
},
"overrides": {
"trim": "0.0.3"
}
}