-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.22 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
{
"name": "@modus/cli",
"version": "1.0.0",
"description": "Expandable CLI tool for Modus Create projects",
"main": "index.js",
"bin" : {
"modus" : "index.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"precommit": "lint-staged",
"lint:fix": "eslint . -f table --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ModusCreateOrg/modus-cli.git"
},
"keywords": [
"Modus",
"Create"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ModusCreateOrg/modus-cli/issues"
},
"homepage": "https://github.com/ModusCreateOrg/modus-cli#readme",
"dependencies": {
"@octokit/rest": "^15.6.1",
"commander": "^2.15.1"
},
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-prettier": "2.6.0",
"husky": "0.14.3",
"lint-staged": "7.1.2",
"prettier": "1.13.2"
},
"prettier": {
"useTabs": false,
"tabWidth": 2,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"**/*.js": [
"npm run lint:fix",
"git add"
]
}
}