-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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
57
58
59
60
61
62
63
64
{
"name": "@ubcdigital/governable",
"version": "1.0.3",
"license": "AGPL-3.0",
"description": "Governable: Distributed Organizations",
"keywords": [
"blockchain",
"bitcoin",
"cryptocurrency",
"DAO",
"distributed",
"autonomous",
"organization",
"digital business"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"rxjs": "^6.6.6",
"symbol-sdk": "^1.0.0",
"symbol-hd-wallets": "^0.14.0",
"symbol-uri-scheme": "^0.6.0",
"@ubcdigital/symbol-taxonomy": "^1.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^5.2.7",
"@types/sinon": "^9.0.11",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.3.3",
"sinon": "^9.2.4",
"faker": "^5.4.0",
"eslint": "^6.8.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",
"highlight.js": ">=10.4.1"
},
"scripts": {
"lint": "eslint src/ --ext .ts && eslint test/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix && eslint test/ --ext .ts --fix",
"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/governable.git"
},
"bugs": {
"url": "https://github.com/usingblockchain/governable/issues"
},
"homepage": "https://governable.symbol.ninja"
}