-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.77 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
{
"name": "@mongodb-js/devtools-docker-test-envs",
"version": "1.3.2",
"description": "DevTools Team docker images and environments for testing",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "mocha --timeout 60000 -r ts-node/register src/**/*.spec.ts",
"prettier": "prettier",
"prelint": "npm run clean",
"lint": "eslint . && npm run prettier -- --check .",
"reformat": "npm run prettier -- --write .",
"depcheck": "depcheck .",
"check": "npm run depcheck && npm run lint && npm run depcheck",
"clean": "git clean --force -X --exclude node_modules",
"precompile": "npm run clean",
"compile": "npm run compile-ts",
"compile-ts": "tsc -p tsconfig.json",
"prepare": "npm run compile",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mongodb-js/devtools-docker-test-envs.git"
},
"bugs": {
"url": "https://github.com/mongodb-js/devtools-docker-test-envs/issues"
},
"homepage": "https://github.com/mongodb-js/devtools-docker-test-envs#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/hostile": "^1.3.0",
"@types/mocha": "^9.0.0",
"@types/uuid": "^8.3.1",
"@types/wait-on": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"depcheck": "^1.4.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"mocha": "^9.0.3",
"prettier": "^2.3.2",
"release-it": "^14.11.6",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"eslint-plugin-mocha": "^9.0.0",
"execa": "^5.1.1",
"hostile": "^1.3.3",
"mongodb-connection-string-url": "^2.0.0",
"uuid": "^8.3.2",
"wait-on": "^6.0.0"
}
}