-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.25 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.25 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
{
"name": "mdi-cli",
"version": "1.4.0",
"description": "Generate material design icons from the command line",
"main": "index.js",
"bin": {
"mdi": "index.js"
},
"scripts": {
"commit": "git-cz",
"lint": "eslint *.js"
},
"keywords": [
"mdi",
"material-design",
"icons",
"cli"
],
"files": [
"index.js"
],
"author": "Arnelle Balane <arnellebalane@gmail.com> (https://arnellebalane.com/)",
"license": "MIT",
"dependencies": {
"@mdi/svg": "3.0.39",
"chalk": "2.4.1",
"fuse.js": "3.3.0",
"inquirer": "6.2.0",
"inquirer-checkbox-plus-prompt": "1.0.1",
"mdi-core": "1.1.0",
"meow": "5.0.0",
"ora": "3.0.0"
},
"devDependencies": {
"commitizen": "3.0.4",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.9.0",
"eslint-config-arnellebalane": "3.3.0",
"ghooks": "2.0.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint"
}
},
"eslintConfig": {
"extends": [
"arnellebalane"
],
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"rules": {
"max-len": [
"off"
]
}
}
}