-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@geut/sodium-javascript-plus",
"version": "0.0.6",
"description": "sodium-javascript with xchacha20 and kx support",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "npm run clean:wasm && npm run build:sodium && npm run build:binding",
"build:sodium": "node scripts/build-sodium.js",
"build:binding": "npm run build:bindingc && npm run build:bindingjs && node scripts/binding-to-base64.js",
"build:bindingc": "npm run asbuild -- -b build/binding-c.wasm assembly/binding-c.ts --importMemory --memoryBase 5246512",
"build:bindingjs": "npm run asbuild -- -b build/binding-js.wasm assembly/binding-js.ts --runtime none",
"asbuild": "asc --validate --optimize",
"test": "jest --passWithNoTests",
"posttest": "npm run lint",
"lint": "standard \"index.js\" \"lib/*.js\" \"tests/*.js\"",
"version": "chan release --allow-yanked ${npm_package_version} && git add .",
"prepublishOnly": "npm run build && npm run test",
"clean": "npm run clean:wasm && npm run clean:sodium",
"clean:wasm": "del-cli build/*",
"clean:sodium": "del-cli libsodium/libsodium-js"
},
"dependencies": {
"sodium-javascript": "^0.5.6"
},
"devDependencies": {
"@geut/chan": "^2.0.0",
"assemblyscript": "^0.9.4",
"binaryen": "^91.0.0",
"del-cli": "^3.0.0",
"execa": "^4.0.0",
"jest": "^25.2.6",
"libsodium-wrappers": "^0.7.6",
"nanobench": "^2.1.1",
"sodium-native": "^3.0.1",
"standard": "^14.3.3"
},
"jest": {
"testMatch": [
"**/tests/**/*.test.js"
]
},
"standard": {
"env": [
"jest",
"node",
"browser"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/sodium-javascript-plus.git"
},
"keywords": [
"sodium",
"wasm",
"xchacha20",
"kx"
],
"author": {
"name": "GEUT",
"email": "contact@geutstudio.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/sodium-javascript-plus/issues"
},
"homepage": "https://github.com/geut/sodium-javascript-plus#readme",
"publishConfig": {
"access": "public"
}
}