-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.46 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
73
74
{
"name": "@cubbit/enigma",
"version": "1.3.1",
"private": true,
"description": "A fast, native, cryptographic engine for the web",
"main": "index.js",
"browser": "index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"install": "node -e \"require('./scripts/node/install.js').install()\"",
"postinstall": "node -e \"require('./scripts/node/install.js').source()\"",
"lint": "tslint -c tslint.json --project tsconfig.json src/**/*.ts",
"build": "node-gyp rebuild",
"cross:arm64": "docker build -t enigma:arm64 -f ./Dockerfile.arm --build-arg TARGET_ARCH=arm64 . && docker run --rm -v $(pwd)/build/stage:/module/build/stage enigma:arm64",
"cross:armv7": "docker build -t enigma:armv7 -f ./Dockerfile.arm --build-arg TARGET_ARCH=armv7 . && docker run --rm -v $(pwd)/build/stage:/module/build/stage enigma:armv7",
"cross": "npm run cross:arm64 && npm run cross:arm7",
"binary:pack": "node -e \"require('./scripts/node/binary.js').pack()\"",
"binary:publish": "node -e \"require('./scripts/node/binary.js').publish()\"",
"build:web": "node -e \"require('./scripts/web/build.js').build()\"",
"pretest": "concurrently \"npm run lint\" \"tsc\"",
"test": "concurrently \"npm run test:node\"",
"test:node": "jest --env node",
"pack": "node -e \"require('./scripts/publish.js').pack()\"",
"publish": "node -e \"require('./scripts/publish.js').publish()\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cubbit/enigma.git"
},
"keywords": [
"crypto",
"aes",
"rsa",
"ecc",
"cubbit",
"security",
"privacy"
],
"author": "Cubbit <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cubbit/enigma/issues"
},
"homepage": "https://github.com/cubbit/enigma#readme",
"dependencies": {
"@cubbit/web-file-stream": "^1.0.1",
"base-x": "^3.0.9",
"bindings": "^1.4.0",
"fs-extra": "^9.0.1",
"node-addon-api": "^3.0.2",
"pem-jwk": "^2.0.0",
"tar": "^6.1.11"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/pem-jwk": "^1.5.1",
"@types/sinon": "^9.0.8",
"aws-sdk": "^2.1046.0",
"concurrently": "^6.4.0",
"glob": "^7.2.0",
"jest": "^26.5.3",
"rimraf": "^3.0.2",
"sinon": "^9.2.0",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.10",
"typescript": "^4.5.3"
}
}