-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.04 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
54
55
56
57
58
59
{
"name": "objective-c-parser",
"version": "1.2.4",
"description": "Get an objective-c header file and translate it to equivalent javascript calls",
"license": "MIT",
"repository": "danielmschmidt/objective-c-parser",
"scripts": {
"precommit": "lint-staged",
"test": "jest",
"fmt": "prettier --write '{**/,}*.{js,json,css,md}'"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"author": {
"name": "Daniel Schmidt",
"email": "danielmschmidt92@gmail.com",
"url": "http://danielmschmidt.de"
},
"engines": {
"node": ">=4"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"files": [
"index.js",
"README.md"
],
"keywords": [
"objective-c",
"parser"
],
"devDependencies": {
"coveralls": "3.1.1",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.7",
"nyc": "17.0.0",
"prettier": "3.3.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}