-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 750 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 750 Bytes
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
{
"name": "ovvar-node",
"version": "1.0.3",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"keywords": ["bitcoin", "ovvar", "crypto"],
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "mocha -r ts-node/register tests/**/*.test.ts --timeout 10000"
},
"author": {
"name": "Gideon Kombian"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"chai": "^4.3.0",
"mocha": "^8.2.1",
"nock": "^13.0.7",
"nyc": "^15.1.0",
"power-assert": "^1.6.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.4"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0"
}
}