-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.44 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
{
"name": "@summercash/summercash-wallet-ts",
"version": "1.0.2",
"private": false,
"description": "A typescript wrapper for the custodial SummerCash wallet API.",
"main": "dist/module.js",
"repository": "[email protected]:SummerCash/summercash-wallet.ts",
"author": "Dowland Aiello <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"crypto",
"api",
"api-wrapper",
"summercash",
"summertech"
],
"scripts": {
"test": "mocha --timeout 5000 --require ts-node/register tests/**/*.ts",
"build": "rollup -c"
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^6.1.4",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"rollup": "^1.16.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.21.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"dependencies": {
"btoa": "^1.2.1",
"cross-fetch": "^3.0.4"
}
}