-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 898 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
{
"name": "generation",
"version": "0.0.1",
"description": "Generate wrapper code for native dependencies",
"main": "index.js",
"private": true,
"scripts": {
"build": "./index.js",
"test": "jest"
},
"author": "DanielMSchmidt <danielmschmidt92@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-generator": "^6.25.0",
"babel-types": "^6.25.0",
"jest": "^20.0.4",
"lerna": "2.0.0-rc.4",
"objective-c-parser": "1.1.0",
"remove": "^0.1.5"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/index.js"
],
"resetMocks": true,
"resetModules": true,
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"dependencies": {
"babel-generate-guard-clauses": "^2.0.0",
"babel-template": "^6.26.0"
}
}