-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 975 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
37
38
39
40
41
42
43
44
45
{
"name": "clarity-dao",
"version": "0.0.0",
"author": {
"name": "Friedger Müffke",
"email": "[email protected]"
},
"repository": "https://github.com/friedger/clarity-dao.git",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^10",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@blockstack/clarity": "^0.3.0",
"@blockstack/clarity-native-bin": "^0.3.0",
"@stacks/network": "^1.0.0-beta.18",
"@stacks/transactions": "^1.0.0-beta.18",
"fs": "^0.0.1-security"
},
"mocha": {
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
],
"extension": [
"ts",
"clar"
],
"timeout": 0,
"recursive": true
}
}