forked from useshortcut/shortcut-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "clubhouse-lib-api",
"version": "0.12.0",
"description": "A Promise based library to the Clubhouse REST API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/clubhouse/clubhouse-lib/issues"
},
"homepage": "https://github.com/clubhouse/clubhouse-lib",
"readme": "https://github.com/clubhouse/clubhouse-lib#readme",
"repository": {
"type": "git",
"url": "https://github.com/clubhouse/clubhouse-lib.git"
},
"license": "MIT",
"scripts": {
"build": "rimraf ./lib && yarn build:typescript && yarn build:flow",
"build:typescript": "tsc",
"build:flow": "scripts/generate-flow-types.sh && node scripts/convert-import-from-types",
"lint": "eslint 'src/**/*.{js,ts}'",
"test": "jest",
"prepublishOnly": "npm run-script build:typescript"
},
"dependencies": {
"fetch-everywhere": "^1.0.5",
"query-string": "^6.14.0",
"universal-url": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"benchmark": "^2.1.4",
"bluebird": "^3.5.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.2.0",
"flowgen": "^1.10.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"rimraf": "^3.0.0",
"save": "^2.3.1",
"ts-jest": "^26.5.2",
"typescript": "4.1.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/node_modules/",
"(<rootDir>/__tests__/.*|(\\.|/)utils)\\.tsx?$"
]
}
}