-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
51 lines (51 loc) · 1.08 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
{
"name": "ignite-native-base-boilerplate",
"description": "Native Base's Ignite boilerplate for React Native",
"license": "MIT",
"repository": "GeekyAnts/ignite-native-base-boilerplate",
"homepage": "https://github.com/GeekyAnts/ignite-native-base-boilerplate",
"version": "2.1.0",
"files": [
"boilerplate",
"commands",
"lib",
"templates",
"boilerplate.js",
"ignite.json",
"options.js",
"plugin.js",
"readme.md",
"screenExamples.js"
],
"scripts": {
"lint": "standard",
"test": "jest",
"watch": "jest --runInBand --watch",
"coverage": "jest --runInBand --coverage",
"shipit": "np"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"__DEV__",
"jasmine",
"beforeAll",
"afterAll",
"test",
"expect",
"describe"
]
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"fs-jetpack": "^1.0.0",
"jest": "^20.0.4",
"np": "^2.15.0",
"sinon": "^2.3.1",
"standard": "^10.0.2",
"tempy": "^0.1.0"
},
"dependencies": {
"ramda": "^0.23.0"
}
}