-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
47
48
49
{
"name": "@runonbitcoin/run",
"version": "0.6.41",
"description": "Run SDK",
"license": "MIT",
"main": "dist/run.node.min.js",
"browser": "dist/run.browser.min.js",
"files": [
"dist/**.min.js"
],
"repository": "git://github.com/runonbitcoin/run.git",
"scripts": {
"lint": "standard --fix",
"build": "webpack",
"test": "env LIB=lib mocha",
"test:cover": "env LIB=lib env COVER=1 nyc --clean=${CLEAN:=true} -r=text -r=lcovonly -x=test/** mocha",
"test:node": "webpack && env LIB=dist/run.node.min.js env MANGLED=1 mocha",
"test:browser": "node test/env/browser"
},
"dependencies": {
"bsv": "^1.5.6"
},
"mocha": {
"timeout": 30000
},
"standard": {
"globals": [
"caller"
]
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"jsdom": "^16.4.0",
"mocha": "^8.1.3",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"sinon": "^9.2.0",
"standard": "^14.3.4",
"terser-webpack-plugin": "^4.2.3",
"txo": "0.0.21",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}