-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 2.79 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "chlu-ipfs-support",
"version": "0.3.2",
"description": "library providing IPFS integration for Chlu",
"main": "src/index.js",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.6.0"
},
"scripts": {
"build": "webpack",
"test": "npm run test-node && npm run test-browser",
"test-node": "mocha --opts tests/mocha.opts",
"test-browser": "karma start --single-run",
"test-watch": "mocha --opts tests/mocha.opts --watch",
"test-coverage": "nyc mocha --opts tests/mocha.opts",
"lint": "eslint src tests",
"docs": "documentation build src/index.js -f html -o docs",
"prepublish": "npm run build"
},
"author": {
"name": "Chlu",
"email": "[email protected]",
"url": "https://chlu.io"
},
"license": "MIT",
"repository": "https://github.com/ChluNetwork/chlu-ipfs-support.git",
"bugs": {
"url": "https://github.com/ChluNetwork/chlu-ipfs-support/issues"
},
"homepage": "https://github.com/ChluNetwork/chlu-ipfs-support/blob/master/README.md",
"dependencies": {
"axios": "^0.18.0",
"brorand": "^1.1.0",
"chlu-did": "ChluNetwork/chlu-did#semver:~0.1.0",
"chlu-wallet-support-js": "ChluNetwork/chlu-wallet-support-js#semver:~0.1.1",
"commander": "^2.15.1",
"debounce-async": "^0.0.1",
"elliptic": "^6.4.0",
"ipfs": "~0.31.7",
"ipfs-api": "^22.3.0",
"lodash": "^4.17.5",
"lru-cache": "^4.1.2",
"moment": "^2.22.2",
"orbit-db": "~0.19.9",
"pg": "^7.4.3",
"protons": "~1.0.1",
"sequelize": "^4.38.0",
"sqlite3": "^4.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chlu-collector": "ChluNetwork/chlu-collector#semver:~0.1.0",
"clean-webpack-plugin": "^0.1.17",
"documentation": "^6.1.0",
"eslint": "^4.12.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"sinon": "^4.1.3",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack": "^3.10.0"
},
"nyc": {
"exclude": [
"bin",
"tests"
]
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"rules": {
"indent": [
"error",
4
],
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"no-console": 0,
"no-debugger": 1,
"no-var": 1,
"no-trailing-spaces": 0,
"eol-last": 0,
"no-underscore-dangle": 0,
"no-alert": 0,
"no-lone-blocks": 0
},
"globals": {}
}
}