forked from daostack/arc.js_legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.17 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.17 KB
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
{
"name": "@daostack/arc.js",
"version": "0.0.0-alpha.39",
"description": "A JavaScript library for interacting with @daostack/arc ethereum smart contracts",
"main": "dist/arc.js",
"types": "index.d.ts",
"files": [
"lib/",
"dist/",
"docs/",
"test/",
"migrations/",
"migrated_contracts/",
"config/",
"index.d.ts",
"package-scripts.js",
"package-scripts/",
"truffle.js",
".babelrc",
".eslintignore",
".eslintrc"
],
"scripts": {
"start": "nps",
"test": "npm start test",
"build": "npm start build",
"lint": "npm start lint",
"ganache": "npm start test.ganache.run",
"migrateContracts": "npm start migrateContracts"
},
"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": {
"babel-preset-env": "^1.6.1"
},
"dependencies": {
"archiver": "^2.1.0",
"bignumber.js": "^5.0.0",
"bip39": "^2.4.0",
"color-convert": "^1.9.1",
"cwd": "^0.10.0",
"decompress": "^4.2.0",
"default-options": "^1.0.0",
"env-variable": "0.0.3",
"es6-promisify": "^6.0.0",
"ethereumjs-abi": "^0.6.5",
"fs-extra": "^5.0.0",
"ganache-cli": "^6.0.3",
"has-flag": "^3.0.0",
"locate-path": "^2.0.0",
"node-glob": "^1.2.0",
"nps": "^5.7.1",
"nps-utils": "^1.5.0",
"path.join": "^1.0.0",
"pm2": "^1.1.3",
"pug": "^2.0.0-rc.1",
"truffle-contract": "^3.0.1",
"truffle-core-migrate-without-compile": "^4.0.7",
"uint32": "^0.2.1"
},
"devDependencies": {
"@daostack/arc": "0.0.0-alpha.35",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.18.1",
"mocha": "^4.0.1",
"tslint": "^5.9.1",
"typedoc": "^0.10.0"
}
}