-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "sodium-native",
"version": "5.0.1",
"description": "Low level bindings for libsodium",
"main": "index.js",
"files": [
"index.js",
"binding.c",
"binding.js",
"macros.h",
"extensions",
"prebuilds",
"CMakeLists.txt"
],
"addon": true,
"dependencies": {
"require-addon": "^1.1.0",
"which-runtime": "^1.2.1"
},
"devDependencies": {
"bare-compat-napi": "^1.3.0",
"brittle": "^3.5.0",
"cmake-bare": "^1.1.10",
"cmake-fetch": "^1.0.1",
"cmake-napi": "^1.0.5",
"standard": "^17.1.0"
},
"scripts": {
"test": "standard && npm run test:node && npm run test:bare",
"test:node": "node test/all.js",
"test:bare": "bare test/all.js"
},
"standard": {
"ignore": [
"/test/fixtures/*.js"
]
},
"engines": {
"bare": ">=1.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/sodium-native.git"
},
"contributors": [
"Emil Bay <github@tixz.dk> (http://bayes.dk)",
"Mathias Buus <mathiasbuus@gmail.com> (https://mafinto.sh)",
"Christophe Diederichs <chm-diederichs@hyperdivision.dk>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/holepunchto/sodium-native/issues"
},
"homepage": "https://github.com/holepunchto/sodium-native"
}