-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 865 Bytes
/
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
{
"name": "generator-npm-module",
"version": "4.0.1",
"description": "Yeoman generator for NPM module",
"license": "ISC",
"main": "app/index.js",
"repository": "domharrington/generator-npm-module",
"author": {
"name": "Dom Harrington",
"email": "[email protected]",
"url": "https://github.com/domharrington"
},
"scripts": {
"test": "eslint . -f unix && prettier --list-different \"./**/**.js\""
},
"files": [
"app"
],
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"keywords": [
"yeoman-generator"
],
"dependencies": {
"slugg": "^0.1.2",
"yeoman-generator": "^1.1.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.6.1",
"prettier": "^1.12.1"
}
}