-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 KB
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
{
"name": "phpcoin-crypto",
"version": "1.1.3",
"description": "Javascript crypto functions for PHP Coin",
"type": "module",
"main": "dist/phpcoin-crypto.esm.js",
"module": "index.cjs",
"browser": "dist/phpcoin-crypto.browser.js",
"exports": {
".": {
"import": "./dist/phpcoin-crypto.esm.js",
"require": "./index.cjs",
"browser": "./dist/phpcoin-crypto.browser.js"
}
},
"scripts": {
"build:browser": "browserify index.cjs -o dist/phpcoin-crypto.browser.js -s phpcoinCrypto",
"build:browser:min": "browserify index.cjs -s phpcoinCrypto | terser -c -m -o dist/phpcoin-crypto.browser.min.js --source-map",
"build:esm": "rollup -c",
"build": "npm run build:browser && npm run build:browser:min && npm run build:esm",
"test": "node tests/test.cjs",
"test-esm": "node tests/test-dist-esm.mjs"
},
"author": "",
"license": "ISC",
"dependencies": {
"@starkbank/ecdsa": "^0.0.3",
"argon2": "^0.30.3",
"base-58": "0.0.1",
"starkbank-ecdsa": "^1.1.4",
"uuid": "^9.0.0",
"md5": "^2.3.0",
"big-integer": "^1.6.52"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-terser": "^0.4.4",
"browserify": "^17.0.0",
"rollup": "^4.52.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"terser": "^5.44.0"
}
}