This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 2.9 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
{
"name": "ipfs-repo-migrations",
"version": "10.0.1",
"description": "Migration framework for versioning of JS IPFS Repo",
"keywords": [
"IPFS",
"libp2p",
"migrations"
],
"homepage": "https://github.com/ipfs/js-ipfs-repo-migrations",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-repo-migrations/issues/"
},
"license": "MIT",
"files": [
"migrations",
"src",
"dist"
],
"types": "./dist/src/index.d.ts",
"main": "src/index.js",
"browser": {
"datastore-fs": "datastore-level"
},
"repository": {
"type": "git",
"url": "https://github.com/ipfs/js-ipfs-repo-migrations.git"
},
"scripts": {
"prepare": "run-s prepare:*",
"prepare:proto": "pbjs -t static-module -w commonjs --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o migrations/migration-9/pin.js migrations/migration-9/pin.proto",
"prepare:proto-types": "pbts -o migrations/migration-9/pin.d.ts migrations/migration-9/pin.js",
"prepare:types": "aegir build --no-bundle",
"new-migration": "./src/cli.js add",
"test": "aegir test",
"test:node": "aegir test --target node",
"test:browser": "aegir test --target browser",
"build": "aegir build",
"lint": "aegir ts -p check && aegir lint",
"release": "aegir release --docs",
"release-minor": "aegir release --type minor --docs",
"release-major": "aegir release --type major --docs",
"coverage": "aegir coverage",
"coverage-publish": "aegir-coverage --provider coveralls",
"docs": "aegir docs"
},
"dependencies": {
"@ipld/dag-pb": "^2.0.0",
"cborg": "^1.3.1",
"datastore-core": "^5.0.0",
"debug": "^4.1.0",
"fnv1a": "^1.0.1",
"interface-blockstore": "^1.0.0",
"interface-datastore": "^5.0.0",
"it-length": "^1.0.1",
"multiformats": "^9.0.0",
"proper-lockfile": "^4.1.1",
"protobufjs": "^6.10.2",
"uint8arrays": "^3.0.0",
"varint": "^6.0.0"
},
"devDependencies": {
"@ipld/car": "^3.0.0",
"@types/debug": "^4.1.5",
"@types/rimraf": "^3.0.2",
"@types/varint": "^6.0.0",
"aegir": "^35.0.1",
"assert": "^2.0.0",
"aws-sdk": "^2.884.0",
"blockstore-datastore-adapter": "1.0.0",
"datastore-fs": "^5.0.0",
"datastore-level": "^6.0.0",
"datastore-s3": "^7.0.0",
"events": "^3.2.0",
"it-all": "^1.0.2",
"just-safe-set": "^2.1.0",
"level-5": "npm:level@^5.0.0",
"level-6": "npm:level@^6.0.0",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"sinon": "^11.1.1",
"util": "^0.12.3"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"contributors": [
"achingbrain <alex@achingbrain.net>",
"Adam Uhlíř <adam@uhlir.dev>",
"Hugo Dias <hugomrdias@gmail.com>",
"Hector Sanjuan <code@hector.link>",
"Vasco Santos <vasco.santos@moxy.studio>",
"Bryan Stenson <bryan.stenson@gmail.com>"
]
}