-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
78 lines (78 loc) · 1.67 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
{
"name": "@endo/base64",
"version": "0.2.17",
"description": "Transcodes base64",
"keywords": [
"base64",
"endo",
"ses"
],
"author": "Endo contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/endojs/endo/tree/master/packages/base64#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/endo.git"
},
"bugs": {
"url": "https://github.com/endojs/endo/issues"
},
"type": "module",
"main": "./index.js",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./encode.js": "./encode.js",
"./decode.js": "./decode.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "exit 0",
"cover": "c8 ava",
"lint": "yarn lint:types && yarn lint:js",
"lint-fix": "eslint --fix .",
"lint:js": "eslint .",
"lint:types": "tsc -p jsconfig.json",
"test": "ava"
},
"devDependencies": {
"@endo/eslint-config": "^0.4.2",
"ava": "^3.12.1",
"babel-eslint": "^10.0.3",
"c8": "^7.7.3",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"typescript": "~4.5.5"
},
"files": [
"LICENSE*",
"SECURITY*",
"src",
"*.js",
"*.ts"
],
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"@endo"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"ava": {
"files": [
"test/**/test-*.js"
],
"timeout": "2m"
}
}