-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
39 lines (39 loc) · 1.25 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": "@theronin/solarweave",
"version": "2.2.0",
"main": "dist/src/Solarweave.library.js",
"repository": "https://github.com/TheLoneRonin/SolarweaveBridge.git",
"license": "MIT",
"private": false,
"preferGlobal": true,
"scripts": {
"start": "npm run build && node dist/src/Solarweave.js",
"build": "tsc --outDir dist && node prepend.js",
"benchmarks": "npm run build && node dist/src/Benchmarks.js",
"compression-benchmarks": "npm run build && node dist/src/CompressionAnalysis.js",
"test": "npm run build && nyc mocha dist/test --timeout 10000",
"test-report": "nyc report --reporter=json > coverage/coverage.json",
"codecov": "nyc report --reporter=text-lcov | codecov --pipe --token=d66120aa-e349-4033-8e71-f07a2262ffd1"
},
"bin": {
"solarweave": "dist/src/Solarweave.js"
},
"dependencies": {
"arweave": "^1.10.1",
"arweave-bundles": "^1.0.0",
"colors": "^1.4.0",
"commander": "^6.0.0",
"fs-jetpack": "^3.1.0",
"superagent": "^6.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"@types/superagent": "^4.1.9",
"codecov": "^3.7.2",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"typescript": "^3.9.7"
}
}