-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "ipfs-website-deployer",
"version": "0.1.5",
"description": "Simple IPFS website deployer.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Pedro-vk/ipfs-website-deployer.git"
},
"bugs": {
"url": "https://github.com/Pedro-vk/ipfs-website-deployer/issues"
},
"homepage": "https://github.com/Pedro-vk/ipfs-website-deployer#readme",
"bin": {
"ipfs-website-deployer": "dist/ipfs-website-deployer-cli.js"
},
"scripts": {
"build": "tsc",
"lint": "tslint src/**/*.ts",
"test": "mocha --timeout 10000 -r ts-node/register src/**/*.spec.ts",
"test:watch": "npm run test -- --watch --watch-extensions ts"
},
"keywords": [
"ipfs",
"ens",
"ethereum",
"website",
"deploy",
"website"
],
"author": "Pedro Gutiérrez",
"license": "MIT",
"dependencies": {
"colors": "^1.3.3",
"commander": "^2.19.0",
"glob": "^7.1.3",
"ipfs-http-client": "^53.0.1",
"ts-progress": "^0.1.7"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.3",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^4.0.3"
}
}