-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "webcash",
"version": "1.0.6",
"description": "Webcash for javascript/typescript",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kanzure/webcashjs.git"
},
"keywords": [
"webcash",
"e-cash",
"digital-currency"
],
"author": "Bryan Bishop <kanzure@gmail.com>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/kanzure/webcashjs/issues"
},
"homepage": "https://github.com/kanzure/webcashjs#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"typings": "^2.1.1"
},
"dependencies": {
"@types/crypto-js": "^4.1.1",
"create-hash": "^1.2.0",
"cross-fetch": "^3.1.5",
"crypto-js": "^4.1.1",
"decimal.js": "^10.3.1",
"regenerator-runtime": "^0.13.9"
}
}