forked from holepunchto/sodium-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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": "4.0.3",
"description": "Low level bindings for libsodium",
"main": "index.js",
"files": [
"index.js",
"binding.c",
"binding.gyp",
"macros.h",
"modules",
"scripts",
"prebuilds",
"CMakeLists.txt",
"vendor/libsodium.gyp",
"vendor/libsodium/src/**/*.c",
"vendor/libsodium/src/**/*.h",
"vendor/libsodium/src/**/*.h.in",
"vendor/libsodium/src/**/*.S"
],
"dependencies": {
"node-gyp-build": "^4.6.0"
},
"devDependencies": {
"brittle": "^3.2.1",
"prebuildify": "^5.0.1",
"standard": "^17.0.0"
},
"scripts": {
"dev": "node-gyp rebuild",
"test": "standard && brittle test/*.js",
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --strip",
"prebuild-ia32": "prebuildify --arch=ia32 --napi --strip"
},
"standard": {
"ignore": [
"/test/fixtures/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/sodium-friends/sodium-native.git"
},
"contributors": [
"Emil Bay <[email protected]> (http://bayes.dk)",
"Mathias Buus <[email protected]> (https://mafinto.sh)",
"Christophe Diederichs <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sodium-friends/sodium-native/issues"
},
"homepage": "https://github.com/sodium-friends/sodium-native"
}