-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 782 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 782 Bytes
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
{
"name": "objc",
"version": "0.23.0",
"description": "NodeJS ↔ Objective-C bridge",
"license": "MIT",
"repository": "lukaskollmer/objc",
"author": {
"name": "Lukas Kollmer",
"email": "lukas.kollmer@gmail.com",
"url": "https://lukaskollmer.me"
},
"main": "./src/index.js",
"scripts": {
"test": "ava --verbose --serial --timeout=1m",
"test_": "xo && ava --verbose --serial --timeout=1m"
},
"keywords": [
"objc",
"Objective-C",
"bridge",
"runtime"
],
"dependencies": {
"ffi-napi": "^4.0.3",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1"
},
"devDependencies": {
"ava": "^3.15.0",
"xo": "^0.44.0"
},
"xo": {
"space": true,
"ignores": [
"examples/*",
"test.js"
]
}
}