forked from tom-james-watson/dat-cp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.94 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
{
"name": "dat-cp",
"version": "0.7.8",
"description": "Dat Copy - remote file copy, powered by the dat protocol",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "babel src -d build",
"cli": "babel-node src/dcp.js",
"eslint": "node_modules/.bin/eslint src test",
"package": "rm -rf builds && npm run pkg && ./package.sh",
"pkg": "pkg package.json -o releases/dcp",
"prepublish": "npm run build",
"test": "mocha --require babel-core/register --exit && npm run eslint"
},
"bin": {
"dat-cp": "build/dcp.js",
"dcp": "build/dcp.js"
},
"pkg": {
"assets": [
"./node_modules/utp-native/prebuilds/**",
"./node_modules/blake2b-wasm/blake2b.wasm",
"./node_modules/siphash24/siphash24.wasm"
],
"targets": [
"node10-linux-x64",
"node10-macos-x64",
"node10-win-x64"
]
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
],
"stage-1"
]
},
"author": "Tom Watson <[email protected]>",
"repository": "tom-james-watson/dat-cp",
"homepage": "https://github.com/tom-james-watson/dat-cp",
"bugs": "https://github.com/tom-james-watson/dat-cp/issues",
"license": "MIT",
"dependencies": {
"append-tree": "^2.4.4",
"chalk": "^4.0.0",
"cli-progress": "^3.8.2",
"commander": "^5.1.0",
"dat-node": "^3.5.15",
"hyperdrive": "^9.16.0",
"multi-random-access": "^2.1.1",
"random-access-file": "^2.1.4",
"random-access-memory": "^3.1.1",
"random-access-storage": "^1.4.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-preset-env": "1.7.0",
"babel-preset-stage-1": "6.24.1",
"chai": "4.1.2",
"cross-zip-cli": "1.0.0",
"eslint": "5.4.0",
"eslint-config-tomjwatson": "0.2.1",
"mocha": "^8.0.1",
"pkg": "^4.4.8",
"sinon": "7.1.1"
}
}