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.69 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-direct-deal",
"version": "0.0.7",
"description": "Quickly make Filecoin deals for pickaxe bundles",
"scripts": {
"dev": "nodemon --ignore dist --exec babel-node index.js",
"build": "babel *.js --out-dir dist",
"prepublish": "npm run build"
},
"bin": {
"pickaxe-direct-deal": "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-watch-for-exit-key": "^0.0.7",
"@jimpick/use-filecoin-asks": "^0.0.5",
"@filecoin-shipyard/use-filecoin-config": "^0.0.11",
"@filecoin-shipyard/use-filecoin-head": "^0.0.10",
"@filecoin-shipyard/use-filecoin-network-info": "^0.0.11",
"bignumber.js": "^9.0.0",
"figures": "^3.0.0",
"filecoin-api-client": "^0.5.1",
"immer": "^3.1.3",
"ink": "^2.3.0",
"meow": "^5.0.0",
"node-fetch": "^2.3.0",
"pretty-bytes": "^5.2.0",
"pretty-ms": "^5.0.0",
"react": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"babel-plugin-shebang": "^1.0.0",
"nodemon": "^1.19.1"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"shebang",
"@babel/transform-react-jsx"
]
},
"browserslist": "node 10",
"nodemonConfig": {
"stdin": false,
"restartable": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/filecoin-shipyard/filecoin-pickaxe-direct-deal.git"
}
}