-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "@endo/stream-types-test",
"version": "0.1.14",
"private": true,
"description": "TypeScript validation for Endo stream types.",
"keywords": [],
"author": "Endo contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/endojs/endo/tree/master/packages/stream-types-test#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/endo.git"
},
"bugs": {
"url": "https://github.com/endojs/endo/issues"
},
"type": "module",
"exports": {},
"scripts": {
"build": "exit 0",
"lint": "yarn lint:types && yarn lint:ts",
"lint-fix": "eslint --fix . --ext .ts",
"lint:ts": "eslint . --ext .ts",
"lint:types": "tsc -p tsconfig.json",
"test": "yarn lint:types"
},
"dependencies": {
"@endo/stream": "^0.3.2",
"ses": "^0.15.7"
},
"devDependencies": {
"@endo/eslint-config": "^0.4.2",
"babel-eslint": "^10.0.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": [],
"publishConfig": {
"access": "private"
},
"eslintConfig": {
"extends": [
"@endo"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}