-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
85 lines (85 loc) · 1.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "contributor-faces",
"version": "1.1.0",
"description": "Put your contributors faces in your readme.",
"author": "Nicolas Gryman <ngryman@gmail.com> (http://ngryman.sh/)",
"license": "MIT",
"repository": "ngryman/contributor-faces",
"main": "dist/contributor-faces.node.js",
"browser": "dist/contributor-faces.browser.js",
"module": "index.js",
"jsnext:main": "index.js",
"bin": "cli.js",
"engines": {
"node": ">=5"
},
"files": [
"cli.js",
"index.js",
"dist/"
],
"scripts": {
"lint": "meta lint",
"pretest": "npm run lint -s",
"test": "meta test",
"dev": "meta dev",
"coverage": "meta coverage",
"see-coverage": "meta see-coverage",
"check-coverage": "meta check-coverage",
"prebuild": "npm run lint -s",
"build": "meta build",
"prepublish": "npm run build -s"
},
"precommit": [
"test",
"check-coverage"
],
"keywords": [
"contributor",
"faces",
"profiles",
"pictures",
"thumbnails",
"list",
"generator",
"readme"
],
"ava": {
"require": [
"babel-register"
]
},
"babel": {
"env": {
"test": {
"presets": [
"node5"
],
"plugins": [
"istanbul"
]
}
}
},
"eslintConfig": {
"extends": "ngryman"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"gh-got": "^9.0.0",
"meow": "^3.7.0",
"micromatch": "^2.3.11",
"readme-filename": "^1.0.0",
"replace-in-file": "^2.0.1"
},
"devDependencies": {
"meta-dev": "^0.4.0",
"pre-commit": "^1.1.3"
}
}