-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 953 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": "enb-example-server",
"version": "0.1.2",
"author": "Marat Dulin <mdevils@yandex.ru>",
"description": "Simple bt-blocks example server",
"contributors": [
{
"name": "Benjamin Tambourine",
"email": "vtambourine@ya.ru"
}
],
"license": "MIT",
"dependencies": {
"commander": "~2.1.0",
"express": "~3.4.8"
},
"devDependencies": {
"jscs": "~1.2.3",
"jshint": "~2.4.1"
},
"peerDependencies": {
"enb": ">=0.8.45"
},
"scripts": {
"check-style": "jscs lib bin",
"jshint": "jshint .",
"test": "npm run-script jshint && npm run-script check-style"
},
"bin": {
"enb-example-server": "./bin/enb-example-server"
},
"repository": {
"type": "git",
"url": "git://github.com/enb-make/enb-example-server.git"
},
"bugs": {
"url": "https://github.com/enb-make/enb-example-server/issues"
},
"homepage": "https://github.com/enb-make/enb-example-server"
}