forked from autonomys/sloth-permutation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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
{
"name": "@hyper-hyper-space/sloth-permutation",
"description": "",
"keywords": [],
"version": "0.1.0",
"homepage": "https://github.com/hyperhyperspace/sloth-permutation",
"author": "Nazar Mokrynskyi <nazar@mokrynskyi.com>",
"repository": {
"type": "git",
"url": "git://github.com/hyperhyperspace/sloth-permutation.git"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run lint && npm run compile-wasm && npm run compile && npm run copy-wasm-artifacts && npm run minify",
"compile-wasm": "bash build-wasm.sh",
"clean": "rm -rf dist",
"compile": "tsc -b",
"lint": "tslint --project .",
"copy-wasm-artifacts": "cp src/sloth.* dist/",
"minify": "terser --compress --mangle -- dist/index.js > dist/index.min.js",
"test": "npm run lint && ts-node node_modules/.bin/tape tests/**/*.ts",
"vendor": "mkdir -p vendor; cd vendor; git clone https://github.com/WaterJuice/WjCryptLib.git; cd WjCryptLib; git checkout e39760a85015b88820d7a2de832155a7c8ff2c88"
},
"devDependencies": {
"@types/tape": "^4.2.33",
"tape": "^4.11.0",
"terser": "^4.3.1",
"tslint": "^5.20.1",
"typescript": "^3.9.9"
},
"dependencies": {
"@types/node": "^12.12.12"
}
}