-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1 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
{
"name": "generator-mithril-webpack",
"version": "0.0.9",
"description": "Yeoman generator for Mithril.js applications utilizing ES6 and WebPack",
"license": "MIT",
"main": "app/index.js",
"repository": "https://github.com/cnatis/generator-mithril-webpack",
"author": {
"name": "Christian Natis",
"email": "",
"url": "https://github.com/cnatis"
},
"scripts": {
"jscoverage": "jscoverage generators generators-cov --exclude templates",
"test": "mocha"
},
"files": [
"generators",
"utilities"
],
"keywords": [
"yeoman-generator",
"mithril-generator",
"mithril",
"webpack-generator",
"webpack"
],
"dependencies": {
"ast-query": "^1.0.1",
"fs-extra": "^0.24.0",
"lodash": "^3.10.1",
"yeoman-generator": "^0.19.0"
},
"devDependencies": {
"coveralls": "^2.11.4",
"jscoverage": "^0.6.0",
"mocha": "*",
"mocha-lcov-reporter": "^1.0.0",
"pre-commit": "^1.1.2"
},
"pre-commit": [
"jscoverage",
"test"
]
}