-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "@kaluma/cli",
"description": "Kaluma CLI (Command Line Interface)",
"version": "1.4.0",
"author": "Minkyu Lee <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/kaluma-project/kaluma-cli.git"
},
"bugs": {
"url": "https://github.com/kaluma-project/kaluma-cli/issues"
},
"homepage": "https://github.com/kaluma-project/kaluma-cli",
"license": "MIT",
"main": "bin/kaluma.js",
"preferGlobal": true,
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"kaluma": "bin/kaluma.js"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^8.3.0",
"crc": "^3.8.0",
"file-size": "^1.0.0",
"serialport": "^9.2.8",
"uglify-js": "^3.14.5",
"webpack": "^5.68.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"directories": {
"lib": "lib",
"test": "test"
}
}