-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 977 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
37
38
39
40
41
42
43
{
"name": "generator-firefoxos-app",
"version": "0.2.0",
"description": "An FirefoxOS app generator",
"license": "MIT",
"main": "app/index.js",
"repository": "sipmann/generator-firefoxos-app",
"author": {
"name": "maurício sipmann",
"email": "[email protected]",
"url": "https://github.com/sipmann"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "mocha",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"firefoxos",
"app"
],
"dependencies": {
"chalk": "^3.0.0",
"mkdirp": "^0.5.1",
"yeoman-generator": "^4.2.0",
"yo": "^3.1.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"mocha": "^6.2.2",
"mocha-lcov-reporter": "1.3.0",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.9.1",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5"
}
}