forked from sCrypt-Inc/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
47
{
"name": "scrypt_boilerplate",
"version": "0.2.0",
"description": "sCrypt project boilerplate",
"main": "",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "mocha -r ts-node/register tests/**/*scrypttest.* --reporter spec --timeout 600000",
"single-test": "mocha -r ts-node/register --reporter spec --timeout 120000",
"testnet": "node tests/testnet/demo.js",
"watch": "node watcher.js",
"gen-desc": "node watcher.js --gen-desc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scrypt-sv/boilerplate.git"
},
"keywords": [
"sCrypt",
"testing",
"Smart Contract",
"bitcoin",
"bitcoin-sv"
],
"author": "sCrypt Inc",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"glob": "^7.1.6",
"minimist": "^1.2.5",
"rabinsig": "^1.0.0",
"scryptlib": "^0.3.7",
"watch": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.6",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
}
}