-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 1.68 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
{
"name": "@liftedinit/many-js",
"version": "0.3.0",
"homepage": "https://github.com/liftedinit/many-js",
"main": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@types/crc": "^3.4.0",
"@types/jest": "^27.0.3",
"@types/node": "^12.20.37",
"@types/node-forge": "^0.10.10",
"@types/uuid": "^8.3.3",
"@typescript-eslint/parser": "^5.7.0",
"base32-decode": "^1.0.0",
"base32-encode": "^1.2.0",
"bip39": "^3.0.4",
"cbor": "^8.1.0",
"crc": "^3.8.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^28.1.3",
"js-sha3": "^0.8.0",
"js-sha512": "^0.8.0",
"node-forge": "^1.3.1",
"ts-jest": "^28.0.8",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
},
"scripts": {
"test": "jest",
"test:integration": "jest --testMatch '**/?(*.)+(integration).[jt]s?(x)'",
"build": "tsc",
"watch": "npm run clean && npm run build -- -w",
"clean": "rm -rf ./dist",
"prepare": "npm run build"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"./src/**",
"!./src/**/__tests__/**"
],
"preset": "ts-jest",
"testEnvironment": "node",
"maxWorkers": 1,
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"transform": {
"node_modules/(base32-encode|to-data-view)/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!base32-encode|to-data-view)/.*"
]
}
}