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.27 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.6",
"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": "^2.4.1",
"generator-git-init": "^1.1.3",
"generator-license": "^5.4.0",
"mkdirp": "^0.5.1",
"yeoman-generator": "^3.1.1",
"yosay": "^2.0.2"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.5.0",
"eslint-config-xo-space": "^0.20.0",
"jest": "^23.5.0",
"jest-cli": "^23.5.0",
"nsp": "^3.2.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
},
"jest": {
"testEnvironment": "node"
},
"eslintConfig": {
"extends": "xo-space",
"rules": {
"eqeqeq": 0
},
"env": {
"jest": true,
"node": true
}
},
"repository": "xbmc/generator-kodi-addon",
"scripts": {
"prepublishOnly": "nsp check",
"pretest": "eslint . --fix",
"test": "jest"
},
"license": "Apache-2.0"
}