-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "@akashaproject/ipfs-connector-utils",
"version": "2.0.4",
"description": "Helpers used by ipfs-connector",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tsc -p ./tsconfig.json && ./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha ./test.js",
"docs": "typedoc index.ts --out docs",
"release": "standard-version",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"test-debug": "./node_modules/.bin/_mocha --debug-brk --inspect ./tests.js"
},
"keywords": [
"ipfs",
"akasha"
],
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"author": "Marius Darila",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/AkashaProject/ipfs-connector-utils.git"
},
"bugs": {
"url": "https://github.com/AkashaProject/ipfs-connector-utils/issues"
},
"homepage": "https://github.com/AkashaProject/ipfs-connector#readme",
"dependencies": {
"@types/bluebird": "3.5.29",
"@types/node": "12.12.14",
"cids": "0.7.1",
"is-ipfs": "0.6.1",
"safe-buffer": "5.2.0"
},
"devDependencies": {
"@types/chai": "4.2.5",
"@types/mocha": "5.2.7",
"@types/rimraf": "2.0.3",
"chai": "4.2.0",
"coveralls": "3.0.8",
"ipfs": "0.39.0",
"istanbul": "0.4.5",
"mocha": "6.2.2",
"mocha-lcov-reporter": "1.3.0",
"rimraf": "3.0.0",
"standard-version": "7.0.1",
"tslint": "5.20.1",
"typescript": "3.7.2"
}
}