-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"name": "ipld-fixtures",
"version": "0.0.1",
"description": "utilities for ipld/codec-fixtures in javascript",
"author": "Russell Dempsey <1173416+SgtPooki@users.noreply.github.com>",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs-shipyard/js-ipld-fixtures#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/js-ipld-fixtures.git"
},
"bugs": {
"url": "https://github.com/ipfs-shipyard/js-ipld-fixtures/issues"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"bin": {
"ipld-fixtures": "./dist/src/run.js"
},
"type": "module",
"types": "./dist/src/index.d.ts",
"files": [
"src",
"dist/src",
"!dist/test",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"scripts": {
"clean": "npx -y rimraf dist",
"build": "tsc",
"lint": "aegir lint",
"start": "node ./dist/src/run.js",
"release": "aegir release"
},
"dependencies": {
"execa": "^6.1.0",
"simple-git": "^3.14.1",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"aegir": "^37.5.4",
"typescript": "^4.8.3"
}
}