forked from najeeb-rifaat/react-native-ci-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.06 KB
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
{
"name": "react-native-ci-tools",
"version": "1.1.0",
"description": "React native CI tools to generate new bundle name and id on thje fly",
"main": "index.js",
"bin": {
"react-native-ci-tools": "index.js"
},
"scripts": {
"test": "nyc mocha ./src/**/*.spec.js --all --timeout=3000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^2.9.0",
"chalk": "^1.1.3",
"glob": "^7.1.2",
"plist": "^2.1.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"mocha": "^3.4.2",
"nyc": "^11.0.2"
},
"nyc": {
"check-coverage": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"include": [
"src/*.js",
"src/**/*.js"
],
"exclude": [
"src/**/index.js",
"src/**/*.spec.js"
],
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".js"
],
"cache": true,
"all": true
}
}