forked from friedger/clarity-smart-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 924 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": "oi-license",
"version": "0.0.0",
"author": {
"name": "Friedger Müffke",
"email": "[email protected]"
},
"repository": "https://github.com/friedger/oi-license.git",
"private": true,
"type": "module",
"engines": {
"node": ">=13"
},
"scripts": {
"hodl": "mocha 'test/integration/hodl-token.ts'",
"test": "mocha 'test/unit/*.ts'",
"license": "mocha 'test/integration/license.ts'",
"escrow": "mocha 'test/integration/escrow.ts'",
"fungible": "mocha 'test/integration/fungible-token.ts'"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^10",
"chai": "^4.2.0",
"fs": "^0.0.1-security",
"mocha": "^6.1.4",
"ts-node": "^8.2.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@blockstack/clarity": "^0.1.13",
"@blockstack/clarity-native-bin": "^0.1.13",
"bn.js": "^5.1.1"
}
}