-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 859 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 859 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
34
35
36
37
38
{
"name": "dext-cli",
"version": "0.5.0",
"description": "",
"main": "./cli.js",
"scripts": {
"precommit": "lint-staged",
"format": "npm run format:js && npm run format:md",
"format:js": "prettier --write 'cli.js'",
"format:md": "prettier --parser markdown --write '*.md'"
},
"bin": {
"dpm": "./cli.js"
},
"author": "Vu Tran <vu@vu-tran.com>",
"repository": {
"type": "git",
"url": "https://github.com/vutran/dext-cli"
},
"license": "MIT",
"dependencies": {
"args": "^2.1.0",
"chalk": "^1.1.3",
"dext-core-utils": "^0.6.0",
"ora": "^0.3.0"
},
"lint-staged": {
"*.js": [
"prettier --write --trailing-comma es5 --single-quote --tab-width 2",
"git add"
]
},
"devDependencies": {
"husky": "^0.13.4",
"lint-staged": "^4.0.0",
"prettier": "^1.12.0"
}
}