-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.53 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.53 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "new-gatsby-post-cli",
"version": "1.1.1",
"description": "Interactive CLI to scaffold out a new Gatsby post",
"license": "MIT",
"repository": "https://github.com/luftywiranda13/new-gatsby-post-cli",
"author": {
"name": "Lufty Wiranda",
"email": "lufty.wiranda@gmail.com",
"url": "https://www.luftywiranda.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"precommit": "remove-lockfiles && lint-staged",
"test:watch": "jest --watch",
"test": "xo && jest"
},
"bin": {
"new-gatsby-post": "cli.js"
},
"files": [
"cli.js"
],
"dependencies": {
"chalk": "^2.3.0",
"dateformat": "^3.0.2",
"inquirer": "^5.0.0",
"log-symbols": "^2.1.0",
"new-gatsby-post": "^1.0.3"
},
"devDependencies": {
"dedent": "^0.7.0",
"fs-extra": "^5.0.0",
"husky": "^0.14.3",
"inquirer-test": "^2.0.1",
"jest": "^22.0.6",
"lint-staged": "^7.0.0",
"remove-lockfiles": "^2.0.4",
"xo": "^0.20.3"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true
},
"xo": {
"envs": [
"jest"
],
"prettier": true,
"space": true,
"rules": {
"promise/prefer-await-to-then": 0
}
},
"keywords": [
"gatsby",
"scaffold",
"react",
"blog",
"template",
"structure",
"workflow",
"create",
"cli"
]
}