-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 914 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
44
45
{
"name": "appcompose",
"version": "0.0.0",
"description": "Build predifined app based the configuration",
"homepage": "https://github.com/androidstarters/appcompose",
"author": {
"name": "Ravindra Kumar",
"email": "[email protected]",
"url": "https://github.com/androidstarters"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"android",
"mvp",
"mvvm",
"aac"
],
"devDependencies": {
"nsp": "^2.6.3",
"eslint": "^4.1.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^19.0.2",
"jest-cli": "^20.0.0"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": "ravidsrk/appcompose",
"jest": {
"testEnvironment": "node"
},
"license": "MIT"
}