-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "cic-client",
"version": "0.1.0",
"description": "Typescript libraries for building CIC client applications",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha -r ts-node/register tests/2_*.ts",
"build": "tsc -d --outDir dist",
"pack": "node_modules/typescript/bin/tsc -d --outDir dist && webpack",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/grassrootseconomics/cic-js.git"
},
"keywords": [
"CIC",
"Ethereum",
"Blockchain"
],
"author": "Louis Holbrook",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://gitlab.com/grassrootseconomics/cic-js/issues"
},
"homepage": "https://gitlab.com/grassrootseconomics/cic-js#readme",
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"assert": "^2.0.0",
"mocha": "^8.2.1",
"require": "^2.4.20",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"bn": "^1.0.5",
"lru-cache": "^6.0.0",
"path-browserify": "^1.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"web3": "^1.3.1",
"webpack": "^5.4.0"
}
}