-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 891 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 891 Bytes
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
{
"name": "mongoplayground-api",
"version": "0.0.2",
"description": "Unofficial API Wrapper for Mongo Playground REPL Website",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wrepl/mongoplayground.git"
},
"keywords": [
"mongo",
"repl",
"database",
"nosql"
],
"author": "wrepl",
"license": "MIT",
"bugs": {
"url": "https://github.com/wrepl/mongoplayground/issues"
},
"homepage": "https://github.com/wrepl/mongoplayground#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}