-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "generator-webpack-lib",
"version": "1.1.0",
"description": "Scaffold out a webpack based library",
"homepage": "https://github.com/tiaanduplessis/generator-dup",
"main": "app/index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint"
},
"files": [
"app"
],
"repository": {
"url": "https://github.com/tiaanduplessis/generator-webpack-lib.git",
"type": "git"
},
"author": {
"name": "Tiaan du Plessis",
"email": "[email protected]",
"url": "http://tiaanduplessis.co.za/"
},
"keywords": [
"yeoman-generator",
"boilerplate",
"template",
"scaffold",
"node",
"module",
"node-module"
],
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"humanize-url": "^1.0.1",
"normalize-url": "^1.8.0",
"underscore.string": "^3.3.4",
"yeoman-generator": "^1.0.0",
"yosay": "^2.0.0"
},
"devDependencies": {
"standard": "^9.0.0"
},
"standard": {
"ignore": [
"app/templates/**"
]
}
}