-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 747 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 747 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
{
"name": "ronin-cli",
"version": "0.0.7",
"description": "CLI Tools for Development with the Ronin Framework",
"keywords": [
"js",
"expressjs",
"nodejs",
"developer-tools",
"samurai-coding"
],
"main": "src/cli.js",
"repository": "https://github.com/Squishy123/ronin-cli.git",
"author": "squishy123 <christian.gnaw@gmail.com>",
"license": "AGPL-3.0",
"dependencies": {
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"inquirer": "^6.5.0",
"lowdb": "^1.0.0",
"simple-git": "^1.124.0"
},
"bin": {
"ronin": "./src/cli.js"
},
"devDependencies": {
"prettier": "^1.18.2"
},
"scripts": {
"format": "prettier --write \"src/**/*.{js,jsx,json}\""
}
}