forked from lukaskollmer/objc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 861 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 861 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
40
41
42
{
"name": "objc",
"version": "0.30.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",
"test": "xo && ava --verbose --serial"
},
"keywords": [
"objc",
"Objective-C",
"bridge",
"runtime"
],
"dependencies": {
"ffi-napi": "^2.4.5",
"ref-napi": "1.4.2",
"ref-struct-napi": "^1.1.0"
},
"devDependencies": {
"ava": "^2.2.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"xo": "^0.18.2"
},
"xo": {
"space": true,
"ignores": [
"examples/*",
"test.js"
]
}
}