-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
{
"name": "@1inch/byte-utils",
"version": "3.0.0",
"description": "Contains helpers to work with bytes",
"author": "@1inch",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]:1inch/ts-byte-utils-lib.git"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --ignore-path .eslintignore --fix",
"lint:types": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"changelog:generate": "changelog generate -a",
"docs:generate": "tsdoc --src=src/*,src/bn/*,src/bit-mask/*,src/bytes-iter/*,src/bytes-builder/*"
},
"dependencies": {},
"devDependencies": {
"@1inch/eslint-config": "^1.4.3",
"@1inch/tsconfig": "^1.0.7",
"@swc/core": "1.3.66",
"@swc/jest": "0.2.26",
"@types/jest": "29.5.2",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "5.59",
"@typescript-eslint/parser": "5.51",
"eslint": "8.41.0",
"eslint-config-prettier": "8.3",
"eslint-config-standard": "17",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.26",
"eslint-plugin-n": "16",
"eslint-plugin-prettier": "4",
"eslint-plugin-promise": "6",
"eslint-plugin-unused-imports": "2",
"jest": "29.5.0",
"prettier": "^2.3.0",
"typescript": "4.9.4",
"generate-changelog": "^1.8.0",
"tsdoc-markdown": "0.3.0"
},
"peerDependencies": {
"assert": "^2.0.0"
},
"peerDependenciesMeta": {
"assert": {
"optional": true
}
},
"engines": {
"node": ">=18.16.0"
},
"volta": {
"node": "18.16.0"
}
}