forked from wix/Detox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.12 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
{
"name": "generation",
"version": "0.0.1",
"description": "Generate wrapper code for native dependencies",
"main": "index.js",
"private": true,
"scripts": {
"build": "./index.js",
"pretest": "./check-for-git-changes.sh",
"test": "jest",
"precommit": "lint-staged",
"format": "prettier ./**/*.{js,json,css,md} --write"
},
"author": "DanielMSchmidt <danielmschmidt92@gmail.com>",
"license": "MIT",
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"babel-generate-guard-clauses": "2.0.5",
"babel-generator": "6.26.1",
"babel-template": "6.26.0",
"babel-types": "6.25.0",
"download-file-sync": "1.0.4",
"java-method-parser": "0.4.7",
"objective-c-parser": "1.2.3",
"remove": "0.1.5",
"uuid": "^3.2.1"
},
"devDependencies": {
"jest": "^20.0.4",
"lint-staged": "^6.0.0",
"prettier": "^1.8.2"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/index.js"
],
"resetMocks": true,
"resetModules": true,
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}