-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.25 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.25 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
{
"name": "platform-tutorials",
"version": "3.1-dev",
"description": "Tutorial code for https://docs.dash.org/platform",
"main": "connect.mjs",
"scripts": {
"fmt": "npx prettier@3.8.1 --write '**/*.{js,mjs}'",
"lint": "npx -p typescript@4 tsc",
"test": "node --test --test-timeout=120000 test/read-only.test.mjs",
"test:read-only": "node --test --test-timeout=120000 test/read-only.test.mjs",
"test:read-write": "node --test --test-timeout=300000 --test-concurrency=1 test/read-write.test.mjs",
"test:all": "node --test --test-timeout=300000 --test-concurrency=1 test/read-only.test.mjs test/read-write.test.mjs",
"test:setup": "mocha --slow 500 test/setupDashClient.test.mjs --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashpay/platform-tutorials.git"
},
"author": "thephez",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashpay/platform-tutorials/issues"
},
"homepage": "https://github.com/dashpay/platform-tutorials#readme",
"dependencies": {
"@dashevo/evo-sdk": "3.1.0-dev.1",
"dotenv": "17.3.1"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "25.5.0",
"chai": "6.2.2",
"eslint": "8.45.0",
"mocha": "11.7.5"
}
}