-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "@runonbitcoin/nimble",
"version": "1.0.14",
"description": "A practical everyday JS library for BSV",
"main": "index.js",
"types": "index.d.ts",
"browser": "dist/nimble.browser.min.js",
"license": "MIT",
"repository": "git+https://github.com/runonbitcoin/nimble.git",
"files": [
"classes",
"constants",
"dist/**.min.js",
"functions",
"wasm/*.js",
"index.d.ts"
],
"scripts": {
"build": "webpack",
"lint": "standard --fix",
"test": "env LIB=. mocha",
"test:cover": "env LIB=. env COVER=1 nyc --clean=${CLEAN:=true} -r=text -r=lcovonly -x=test/** mocha",
"test:node": "webpack && env LIB=dist/nimble.node.min.js env VARIANT=node mocha",
"test:browser": "node test/env/browser",
"test:types": "tsd"
},
"devDependencies": {
"bsv": "^1.5.6",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"fs-extra": "^10.1.0",
"glob": "^7.2.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"selenium-webdriver": "^4.1.1",
"standard": "^16.0.4",
"tsd": "^0.21.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"tsd": {
"directory": "test"
}
}