This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "@textile/storage",
"version": "0.0.0",
"private": true,
"description": "Javascript/Typescript SDK for Textile's blockchain ↔ Filecoin bridge system",
"main": "index.js",
"scripts": {
"test": "jest",
"docs": "npm run build && typedoc --packages .",
"build": "npm run build --workspaces",
"lint": "eslint --ext .js,.ts .",
"verify": "npm run build && npm run test && npm run lint",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"workspaces": [
"packages/*"
],
"keywords": [
"filecoin",
"bridge",
"sdk",
"textile",
"blockchain",
"storage"
],
"author": "Carson Farmer <[email protected]>",
"license": "MIT AND Apache-2.0",
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@stablelib/base64": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58": "^4.0.1",
"@types/chai": "^4.2.21",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"bs58": "^4.0.1",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fetch-mock-jest": "^1.5.1",
"form-data-encoder": "^1.2.0",
"formdata-node": "^3.6.2",
"jest": "^27.0.6",
"jest-environment-node": "^27.0.6",
"jest-localstorage-mock": "^2.4.14",
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"ttypescript": "^1.5.12",
"typedoc": "^0.21.5",
"typescript": "^4.3.5"
},
"nyc": {
"reporter": [
"html"
]
}
}