-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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": "boom-contracts",
"version": "0.1.0",
"author": "Boom Crypto Inc <[email protected]> (https://boom.money)",
"repository": "https://github.com/boomcrypto/boom-contracts.git",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch"
},
"devDependencies": {
"@types/node": "^14",
"typescript": "^4.2.3",
"ts-node": "^9.1.1",
"chai": "^4.3.4",
"chai-string": "^1.5.0",
"@types/chai": "^4.2.16",
"mocha": "^8.3.2",
"@types/mocha": "^8.2.2"
},
"dependencies": {
"@stacks/network": "^1.2.2",
"@stacks/transactions": "^1.3.5",
"@blockstack/clarity": "^0.3.10",
"@blockstack/clarity-native-bin": "^0.3.10"
},
"engines": {
"node": ">= 14",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"mocha": {
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
],
"extension": [
"ts",
"clar"
],
"timeout": 0,
"recursive": true
}
}