This repository has been archived by the owner on Jan 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 1.98 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
{
"name": "identifi-daemon",
"version": "0.0.91",
"description": "Identifi daemon",
"homepage": "https://github.com/identifi/identifi-daemon",
"author": {
"name": "Martti Malmi",
"email": "[email protected]",
"url": "https://github.com/mmalmi"
},
"repository": "identifi/identifi-daemon",
"license": "MIT",
"main": "server.js",
"files": [
"identifid",
"db.js",
"server.js",
"schema.js",
"util.js",
"config/default.json",
"apidoc"
],
"keywords": [
"identifi",
"identity",
"trust",
"web of trust",
"rating",
"reputation"
],
"dependencies": {
"async": "^2.5.0",
"body-parser": "^1.18.1",
"config": "^1.26.2",
"daemonize2": "^0.4.2",
"express": "^4.15.4",
"express-jwt": "^5.3.0",
"express-session": "^1.15.5",
"identifi-lib": "0.0.21",
"ipfs": "^0.26.0",
"ipfs-api": "^14.3.5",
"ipfs-repo": "^0.17.0",
"ipld-dag-pb": "^0.11.2",
"jws": "^3.1.4",
"knex": "^0.13.0",
"merkle-btree": "^1.0.18",
"os-homedir": "^1.0.2",
"passport": "^0.4.0",
"pg": "^7.3.0"
},
"optionalDependencies": {
"passport-facebook": "^2.1.1",
"passport-google-oauth2": "^0.1.6",
"passport-persona": "^0.2.1",
"passport-twitter": "^1.0.4"
},
"devDependencies": {
"apidoc": "^0.17.6",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "7.1.1",
"coffee-script": "^1.12.7",
"eslint": "^4.7.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.3",
"npm-watch": "^0.2.0",
"request-promise": "^4.2.1",
"sqlite3": "^3.1.11"
},
"watch": {
"lint": "*.js",
"server": "*.js"
},
"scripts": {
"start": "npm-watch",
"test": "./node_modules/.bin/mocha test/*.coffee --compilers coffee:coffee-script/register --require babel-register",
"lint": "./node_modules/.bin/eslint *.js",
"server": "node server.js"
},
"bin": {
"identifid": "identifid"
}
}