-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "loadster",
"version": "2.0.2",
"description": "Loadster Command Line Utility",
"main": "./js/main.js",
"bin": "./js/main.js",
"scripts": {
"lint": "eslint --fix",
"start": "node ./js/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"pkg": "pkg package.json --targets node18-macos-x64,node18-windows-x64,node18-linux-x64 --out-path build",
"clean": "rm -rf build/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loadster/loadster-cli.git"
},
"keywords": [
"loadster",
"load",
"testing"
],
"author": "Andy Hawkes <andy@loadster.app>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loadster/loadster-cli/issues"
},
"homepage": "https://github.com/loadster/loadster-cli#readme",
"dependencies": {
"colors": "^1.4.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"node-localstorage": "^2.2.1",
"ospath": "^1.2.2",
"prompt": "^1.3.0",
"pusher-js": "^8.0.2",
"sleep-promise": "^9.1.0"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"pkg": "^5.8.1"
}
}