-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.18 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.18 KB
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
{
"name": "@exodus/bintoken",
"version": "0.1.2",
"publishConfig": {
"access": "public"
},
"description": "Binary encoding of named fixed-length buffers.",
"author": "Exodus Movement Inc",
"repository": {
"type": "git",
"url": "git+https://github.com/ExodusMovement/bintoken.git"
},
"homepage": "https://github.com/ExodusMovement/bintoken#readme",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ExodusMovement/bintoken/issues"
},
"main": "src/index.js",
"engines": {
"node": ">=12.18.0"
},
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "yarn lint --fix"
},
"eslintConfig": {
"env": {
"node": true,
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
},
"prettier": "@exodus/prettier",
"devDependencies": {
"@exodus/prettier": "^0.1.5",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1"
},
"dependencies": {}
}