-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1022 Bytes
/
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
{
"name": "print-usage",
"version": "1.0.0",
"description": "Helpful CLI usage printer",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/print-usage.git"
},
"homepage": "https://github.com/tiaanduplessis/print-usage",
"bugs": "https://github.com/tiaanduplessis/print-usage/issues",
"author": {
"name": "Tiaan",
"email": "tiaanduplessis@hotmail.com",
"url": "tiaan.beer"
},
"scripts": {
"start": "npm run dev",
"pretest": "npm run lint:fix",
"test": "jest --env=node",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage",
"lint": "standard --verbose",
"lint:fix": "standard --fix --verbose",
"precommit": "npm test"
},
"keywords": [
"cli",
"usage",
"print",
"show",
"print-usage"
],
"dependencies": {
"pad-right": "^0.2.2"
},
"devDependencies": {
"husky": "^0.13.3",
"jest": "^19.0.2",
"standard": "^10.0.1"
}
}