-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 972 Bytes
/
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
{
"name": "meetup-token",
"version": "0.0.2",
"description": "An Ethereum ERC20 compatible token for members of a meetup.com group",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/naddison36/meetup-token.git"
},
"bin": {
"mcoin": "./mcoin.js"
},
"keywords": [
"meetup",
"Ethereum",
"token",
"ERC20",
"API"
],
"author": "Nick Addison",
"license": "MIT",
"homepage": "https://github.com/naddison36/meetup-token#readme",
"dependencies": {
"commander": "^2.11.0",
"config": "^1.26.2",
"config-logger": "git://github.com/naddison36/logger#v0.0.4",
"js-yaml": "^3.9.1",
"meetup-api": "^1.4.29",
"underscore": "^1.8.3",
"verror": "^1.10.0",
"web3": "^1.0.0-beta.18"
},
"devDependencies": {
"@types/commander": "^2.9.1",
"@types/node": "^6",
"@types/underscore": "^1.8.1",
"jasmine-node": "^1.14.5",
"typescript": "~2.4.2"
}
}