-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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": "generation",
"version": "17.0.0",
"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/generator": "7.0.0-beta.49",
"@babel/template": "7.0.0-beta.49",
"@babel/types": "7.0.0-beta.49",
"babel-generate-guard-clauses": "3.0.0-1",
"java-method-parser": "0.4.7",
"remove": "0.1.5",
"uuid": "^3.2.1"
},
"devDependencies": {
"jest": "^26.0.0",
"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
}
}
}
}