-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
81 lines (81 loc) · 2.75 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
78
79
80
81
{
"name": "@textile/powergate-client",
"version": "0.0.0",
"description": "Client for Textile's Powergate",
"repository": {
"type": "git",
"url": "https://github.com/textileio/js-powergate-client"
},
"main": "dist/index",
"types": "dist/index",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"build": "npm run compile",
"compile": "tsc -b tsconfig.json",
"clean": "rimraf ./dist ./tsconfig.tsbuildinfo",
"watch": "tsc --watch",
"test": "npm run test:node && npm run test:browser",
"test:node": "npm run powergate-docker && TS_NODE_FILES=true mocha --exit",
"test:browser": "npm run powergate-docker && polendina --timeout 3000 --cleanup src/**/*.spec.ts --webpack-config ./webpack.test.js",
"lint": "eslint --fix --ext .js,.ts src/**/*",
"docs": "npx -p typescript -p typedoc@next typedoc --plugin none --mode library --out docs --excludeNotExported --includeDeclarations --ignoreCompilerErrors src/index.ts",
"docs:test": "npm run docs:clean && npm run docs:md && npm run docs:verify",
"docs:clean": "rm -rf docs",
"docs:md": "typedoc --plugin typedoc-plugin-markdown src/index.ts",
"docs:verify": "typescript-docs-verifier --input-files=`find docs -type f -name '**.md'`",
"localnet:up": "cd powergate-docker && make localnet",
"localnet:down": "cd powergate-docker && make localnet-down",
"powergate-docker": "./powergate-docker.sh"
},
"keywords": [
"typescript",
"library",
"filecoin",
"ipfs",
"textile"
],
"author": "Textile <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/chai": "^4.2.15",
"@types/dirty-chai": "^2.0.2",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"chai": "^4.3.4",
"dirty-chai": "^2.0.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"json": "^10.0.0",
"mocha": "^8.3.2",
"polendina": "^1.1.0",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^1.1.1",
"rimraf": "^3.0.2",
"touch": "^3.1.0",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typedoc": "^0.20.32",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^4.2.3",
"typescript-docs-verifier": "^1.1.3",
"wait-on": "^5.2.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@textile/grpc-powergate-client": "2.3.1",
"@textile/grpc-transport": "^0.4.0",
"ipfs-http-client": "^47.0.1",
"it-block": "^2.0.0"
}
}