-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
92 lines (92 loc) · 2.61 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
{
"name": "ipfs-repo-migrations",
"version": "10.0.0",
"description": "Migration framework for versioning of JS IPFS Repo",
"keywords": [
"IPFS",
"libp2p",
"migrations"
],
"homepage": "https://github.com/ipfs/js-ipfs-repo/tree/master/packages/ipfs-repo-migrations",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-repo/issues/"
},
"license": "(Apache-2.0 OR MIT)",
"main": "src/index.js",
"types": "types/src/index.d.ts",
"type": "module",
"files": [
"*",
"!**/*.tsbuildinfo"
],
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"publishConfig": {
"directory": "dist"
},
"browser": {
"datastore-fs": "datastore-level"
},
"repository": {
"type": "git",
"url": "https://github.com/ipfs/js-ipfs-repo.git"
},
"scripts": {
"clean": "rimraf types dist",
"generate": "run-s generate:*",
"generate:proto": "pbjs -t static-module -w es6 --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",
"generate:proto-types": "pbts -o migrations/migration-9/pin.d.ts migrations/migration-9/pin.js",
"prepublishOnly": "npm run build",
"build": "aegir build",
"pretest": "aegir build --esm-tests",
"test": "aegir test",
"lint": "aegir ts -p check && aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"depcheck": "aegir dep-check"
},
"dependencies": {
"@ipld/dag-pb": "^2.0.0",
"cborg": "^1.3.1",
"datastore-core": "^6.0.7",
"debug": "^4.1.0",
"fnv1a": "^1.0.1",
"interface-blockstore": "^2.0.2",
"interface-datastore": "^6.0.2",
"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-core": "^1.0.2",
"blockstore-datastore-adapter": "2.0.1",
"datastore-fs": "^6.0.1",
"datastore-level": "^7.0.1",
"datastore-s3": "^8.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"
}
}