forked from sCrypt-Inc/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "scrypt_boilerplate",
"version": "0.1.0",
"description": "sCrypt project boilerplate",
"main": "",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*scrypttest.* --reporter spec --timeout 120000",
"single-test": "mocha -r ts-node/register --reporter spec --timeout 120000",
"testnet": "node tests/testnet/demo.js"
},
"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": {},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.6",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"scrypttest": "^0.1.34",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
}
}