-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
69 lines (69 loc) · 1.73 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
{
"name": "arweave-deploy",
"version": "1.9.1",
"description": "arweave-deploy",
"main": "dist/arweave",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/cli-progress": "^1.8.1",
"@types/mime": "^2.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.13",
"@types/promptly": "^1.1.28",
"arweave": "^1.7.0",
"axios": "^0.19.1",
"chai": "^4.2.0",
"cli-progress": "^3.5.0",
"commander": "^2.20.3",
"glob": "^7.1.6",
"inline-source": "^6.2.0",
"ipfs-unixfs": "^0.1.16",
"ipld-dag-pb": "^0.17.4",
"mime": "^2.4.4",
"mocha": "^5.2.0",
"nexe": "^3.3.2",
"prettier": "^1.19.1",
"promptly": "^3.0.3",
"ts-loader": "^5.4.5",
"ts-node": "^7.0.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"scripts": {
"dev": "npx webpack --watch --config-name build && chmod +x dist/arweave",
"build": "npx webpack --config-name build && chmod +x dist/arweave",
"package": "npx webpack --config-name package",
"test": "mocha --require ts-node/register test/*.ts"
},
"bin": {
"arweave": "dist/arweave"
},
"files": [
"dist/arweave",
"docs/*.md"
],
"targets": {
"node": "10.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArweaveTeam/arweave-deploy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArweaveTeam/arweave-deploy/issues"
},
"homepage": "https://www.arweave.org/hosting.html",
"dependencies": {},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"singleQuote": true,
"parser": "typescript",
"printWidth": 120
}
}