forked from oddsdk/ts-odd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.9 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "webnative",
"version": "0.20.3",
"description": "Fission Webnative SDK",
"keywords": [
"WebCrypto",
"auth",
"IPFS",
"files"
],
"main": "index.cjs.js",
"module": "index.es5.js",
"browser": "index.umd.js",
"typings": "types/index.d.ts",
"author": "Daniel Holmgren <daniel@fission.codes>",
"repository": {
"type": "git",
"url": "https://github.com/fission-suite/webnative"
},
"homepage": "https://guide.fission.codes",
"license": "Apache-2.0",
"engines": {
"node": ">=10.21.0"
},
"scripts": {
"docs": "typedoc",
"lint": "yarn eslint src/**/*.ts test/**/*.ts",
"prebuild": "rimraf dist",
"build": "tsc && rollup -c rollup.config.ts",
"start": "tsc -w",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"precommit": "lint-staged"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@rollup/plugin-inject": "^4.0.1",
"@types/jest": "^25.2.1",
"@types/node": "^13.7.4",
"@types/throttle-debounce": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"braces": "^3.0.2",
"eslint": "^7.7.0",
"jest": "^25.2.7",
"jest-config": "^25.2.7",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"prompt": "^1.0.0",
"replace-in-file": "^5.0.2",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^3.8.2",
"typescript-documentation": "^2.0.0",
"yarn": "^1.22.4"
},
"dependencies": {
"base58-universal": "^1.0.0",
"borc": "^2.1.1",
"fission-bloom-filters": "^1.4.0",
"ipld-dag-pb": "^0.18.2",
"keystore-idb": "^0.13.5",
"load-script2": "^2.0.5",
"localforage": "^1.7.3",
"make-error": "^1.3.6",
"throttle-debounce": "^2.2.1"
}
}