forked from UsingBlockchain/swapable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
{
"name": "@ubcdigital/swapable",
"version": "1.3.2",
"license": "LGPL-3.0-only",
"description": "Swapable: Automated Liquidity Pools",
"keywords": [
"blockchain",
"bitcoin",
"cryptocurrency",
"market",
"liquidity",
"pool",
"digital assets",
"swap"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"rxjs": "^6.6.6",
"symbol-sdk": "^1.0.1",
"symbol-uri-scheme": "^0.6.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^5.2.7",
"@types/sinon": "^9.0.11",
"chai": "^4.3.3",
"sinon": "^9.2.4",
"faker": "^5.4.0",
"mocha": "^5.2.0",
"rimraf": "^3.0.2",
"ts-node": "^7.0.0",
"typedoc": "^0.15.0",
"typemoq": "^2.1.0",
"typescript": "^3.9.9",
"utf8": "3.0.0"
},
"scripts": {
"build": "rimraf dist && mkdir dist && tsc",
"pretest": "npm run build",
"test": "mocha --ui bdd --recursive ./dist/test",
"version": "echo $npm_package_version",
"docs": "npx typedoc --out \"docs/`npm run version --silent`\" src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usingblockchain/swapable.git"
},
"bugs": {
"url": "https://github.com/usingblockchain/swapable/issues"
},
"homepage": "https://swapable.symbol.ninja"
}