-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.5 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
61
62
63
64
65
66
67
{
"name": "gatsby-generator",
"description": "Generate Gatsby Starters in Seconds",
"version": "1.0.0",
"author": "Enrique Benitez <[email protected]>",
"bin": {
"gatsby-generate": "./bin/run"
},
"bugs": "https://github.com/bntzio/gatsby-generator/issues",
"dependencies": {
"@oclif/command": "^1.4.6",
"@oclif/config": "^1.3.62",
"@oclif/plugin-help": "^1.2.1",
"chalk": "^2.3.2",
"inquirer": "^5.2.0",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"shelljs": "^0.8.1"
},
"devDependencies": {
"@oclif/tslint": "^1.0.2",
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.0",
"ts-node": "5",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/bntzio/gatsby-generator",
"keywords": [
"cli",
"cli-app",
"oclif",
"react",
"reactjs",
"gatsbyjs",
"gatsby",
"gatsby-starter",
"gatsby-theme",
"gatsby-generator",
"generator",
"static-site-generator",
"static-site"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "gatsby-generate"
},
"repository": "bntzio/gatsby-generator",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "tsc -p . --noEmit && tslint -p . -t stylish",
"posttest": "yarn run lint",
"prepublishOnly": "yarn run build",
"test": "echo NO TESTS"
},
"types": "lib/index.d.ts"
}