This repository has been archived by the owner on Aug 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "filecoin-pickaxe",
"version": "0.0.14",
"description": "Tool for storing/retrieving data in Filecoin",
"scripts": {
"help": "babel-node index.js --help",
"build": "babel *.js --out-dir dist && babel commands/*.js --out-dir dist/commands",
"prepublish": "npm run build"
},
"bin": {
"pickaxe": "dist/index.js"
},
"keywords": [],
"author": "Jim Pick (@jimpick)",
"license": "MIT",
"dependencies": {
"@jimpick/filecoin-pickaxe-mineshaft": "^0.0.13",
"@jimpick/filecoin-pickaxe-mineshaft-context": "^0.0.3",
"@jimpick/ink-exit-now": "^0.0.5",
"@jimpick/ink-watch-for-exit-key": "^0.0.7",
"@jimpick/react-command-router": "^0.0.4",
"@filecoin-shipyard/use-filecoin-config": "^0.0.11",
"delay": "^4.3.0",
"figures": "^3.0.0",
"filecoin-api-client": "^0.5.2",
"haikunator": "^2.1.1",
"ink": "^2.3.0",
"meow": "^5.0.0",
"node-fetch": "^2.3.0",
"pretty-bytes": "^5.2.0",
"protocol-words": "^0.0.7",
"react": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.6.0",
"babel-plugin-shebang": "^1.0.0",
"nodemon": "^1.19.1"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"shebang",
"@babel/transform-react-jsx"
],
"sourceMaps": "inline"
},
"browserslist": "node 10",
"nodemonConfig": {
"stdin": false,
"restartable": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/filecoin-shipyard/filecoin-pickaxe.git"
}
}