-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.15 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "create-rdme",
"version": "2.0.0",
"description": "create-rdme CLI",
"homepage": "https://github.com/nihaladoni/create-rdme",
"repository": {
"type": "git",
"url": "git+https://github.com/nihaladoni/create-rdme.git"
},
"keywords": [
"CLI",
"github",
"Readme-cli",
"License",
"Contribution",
"readme"
],
"author": "Nehal Adoni <[email protected]>",
"bin": {
"create-rdme": "bin/create-rdme"
},
"scripts": {
"format": "prettier --write **/*.{js,json} && standard --fix",
"lint": "standard",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"data-store": "^4.0.3",
"gluegun": "latest",
"prompts": "^2.4.2"
},
"devDependencies": {
"jest": "^24.1.0",
"prettier": "^1.12.1",
"standard": "^12.0.1"
},
"jest": {
"testEnvironment": "node"
},
"standard": {
"env": [
"jest"
]
},
"prettier": {
"semi": false,
"singleQuote": true
}
}