-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) 路 2.12 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) 路 2.12 KB
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
{
"name": "@colony/pinion",
"version": "0.1.1",
"description": "Colony orbit-db pinning service",
"bin": {
"pinion": "bin/index.js"
},
"files": [
"lib",
"bin",
"scripts",
"README.md",
"LICENSE",
"CODE_OF_CONDUCT.md"
],
"main": "src/index.ts",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"test": "ava",
"lint": "node_modules/.bin/eslint --fix --ext ts src types",
"ipfsd-js": "docker run -v $(pwd)/data-js:/root/.jsipfs -p 4001:4001 -p 4003:4003 -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 joincolony/js-ipfs:latest daemon --enable-pubsub-experiment",
"ipfsd-go": "docker run -v $(pwd)/data-go:/data/ipfs -p 4001:4001 -p 4003:4003 -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/go-ipfs:v0.4.20 daemon --enable-pubsub-experiment",
"postinstall": "scripts/postinstall.sh",
"start": "yarn build && bin/index.js",
"test:ci": "wait-on tcp:$CI_API_PORT && yarn test --verbose"
},
"keywords": [
"ipfs",
"orbit-db",
"pinning"
],
"author": "Christian Maniewski <chris@colony.io>",
"license": "MIT",
"devDependencies": {
"@types/debug": "4.1.4",
"@types/dotenv": "6.1.1",
"@types/lru-cache": "5.1.0",
"@types/node": "10.14.6",
"@types/sinon": "7.0.11",
"@types/yallist": "3.0.1",
"@typescript-eslint/eslint-plugin": "1.7.0",
"@typescript-eslint/parser": "1.7.0",
"ava": "1.4.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-prettier": "3.0.1",
"husky": "2.1.0",
"ipfs": "0.35.0",
"ipfsd-ctl": "0.42.2",
"lint-staged": "8.1.0",
"prettier": "1.17.0",
"sinon": "7.3.2",
"tap-xunit": "2.3.0",
"ts-node": "8.1.0",
"typescript": "3.4.5",
"wait-on": "3.2.0"
},
"dependencies": {
"debug": "^4.1.0",
"dotenv": "^7.0.0",
"ipfs-http-client": "^30.1.3",
"ipfs-pubsub-peer-monitor": "^0.0.8",
"is-ipfs": "^0.6.0",
"orbit-db": "^0.20.1",
"yallist": "^3.0.3"
},
"ava": {
"files": "src/__tests__/*.test.ts",
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}