forked from xbmc/generator-kodi-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "generator-kodi-addon",
"version": "0.0.4",
"description": "Creates the basic structure for a kodi addon, written in python.",
"homepage": "/~https://github.com/xbmc/generator-kodi-addon#installation",
"author": {
"name": "Kolja Lampe",
"email": "razzeee@gmail.com",
"url": ""
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"kodi",
"xbmc",
"python",
"script",
"yeoman-generator"
],
"dependencies": {
"chalk": "^1.1.3",
"generator-git-init": "^1.1.3",
"generator-license": "^5.1.0",
"mkdirp": "^0.5.1",
"yeoman-generator": "^1.1.0",
"yosay": "^2.0.0"
},
"devDependencies": {
"yeoman-test": "^1.6.0",
"yeoman-assert": "^3.0.0",
"eslint": "^3.15.0",
"eslint-config-xo-space": "^0.15.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.1.1",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-plumber": "^1.1.0",
"gulp-nsp": "^2.4.2",
"gulp-coveralls": "^0.1.4"
},
"eslintConfig": {
"extends": "xo-space",
"rules": {
"eqeqeq": 0
},
"env": {
"mocha": true
}
},
"repository": "xbmc/generator-kodi-addon",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "Apache-2.0"
}