-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
96 lines (96 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@daostack/arc.js",
"version": "0.0.0-alpha.105",
"description": "A JavaScript library for interacting with @daostack/arc ethereum smart contracts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"lib/",
"dist/",
"custom_typings/",
"docs/",
"test/",
"migrated_contracts/",
"config/",
"package-scripts.js",
"package-scripts/",
"truffle.js",
"migration.json"
],
"scripts": {
"start": "nps",
"test": "npm start test",
"buildtest": "npm start test.build",
"build": "npm start build",
"lint": "npm start lint",
"ganache": "npm start ganache",
"migrateContracts": "npm start migrateContracts",
"createGenesisDao": "npm start createGenesisDao"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daostack/arc.js.git"
},
"keywords": [
"Arc",
"DAOstack",
"Genesis",
"Ethereum",
"DAO",
"javascript",
"smart",
"contracts"
],
"author": "DAOstack",
"license": "GPL-3.0",
"engines": {
"node": ">= 9.4.0"
},
"bugs": {
"url": "https://github.com/daostack/arc.js/issues"
},
"homepage": "https://github.com/daostack/arc.js#readme",
"peerDependencies": {
"ganache-cli": "^6.2.3"
},
"dependencies": {
"@daostack/migration": "0.0.0-alpha.58-v6",
"archiver": "^2.1.0",
"bignumber.js": "^5.0.0",
"circular-json": "^0.5.4",
"color-convert": "^1.9.1",
"cwd": "^0.10.0",
"decompress": "^4.2.0",
"env-variable": "0.0.3",
"es6-promisify": "^6.0.0",
"ethereumjs-abi": "^0.6.5",
"ethjs-abi": "0.1.8",
"fs-extra": "^5.0.0",
"ganache-cli": "^6.2.3",
"node-glob": "^1.2.0",
"nps": "^5.9.3",
"nps-utils": "^1.7.0",
"path.join": "^1.0.0",
"pubsub-js": "^1.6.0",
"truffle-contract": "^3.0.1",
"tslib": "^1.9.0",
"web3": "^0.20.7",
"websocket": "^1.0.26"
},
"devDependencies": {
"@daostack/arc": "0.0.0-alpha.58",
"@types/chai": "^4.1.2",
"@types/circular-json": "^0.4.0",
"@types/es6-promisify": "^6.0.0",
"@types/mocha": "^5.1.0",
"@types/pubsub-js": "^1.5.18",
"chai": "^4.1.2",
"colors": "^1.3.2",
"mocha": "^4.0.1",
"truffle-hdwallet-provider": "0.0.6",
"tslint": "^5.11.0",
"typedoc": "^0.11.1",
"typedoc-plugin-markdown": "^1.0.14",
"typescript": "^3.0.3"
}
}