-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "flores-cli",
"version": "1.0.0-beta.4",
"description": "The CLI tool for the Flores API.",
"keywords": [
"flores",
"static-site-generator"
],
"homepage": "https://github.com/risan/flores-cli#readme",
"bugs": {
"url": "https://github.com/risan/flores-cli/issues"
},
"license": "MIT",
"author": {
"name": "Risan Bagja Pradana",
"email": "risanbagja@gmail.com",
"url": "https://bagja.net"
},
"bin": {
"flores": "src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/risan/flores-cli.git"
},
"scripts": {
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"prepublishOnly": "npm run lint && npm run test",
"test": "jest"
},
"dependencies": {
"flores": "^1.0.0-beta.4",
"meow": "^5.0.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"execa": "^1.0.0",
"jest": "^23.6.0",
"prettier": "^1.15.3"
},
"engines": {
"node": ">=8.0.0"
}
}