-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 880 Bytes
/
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
{
"name": "mock-cwd",
"version": "1.0.0",
"description": "Mocks the current working directory to a given path. Helpful to be used inside tests.",
"main": "index.js",
"author": "Marvin Scharle",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OpDatabase/base.git"
},
"bugs": {
"url": "https://github.com/marvinscharle/mock-cwd/issues"
},
"homepage": "https://github.com/marvinscharle/mock-cwd#readme",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "yarn jest --config jest.config.js"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^8",
"@types/randomstring": "^1.1.6",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"tslint": "^5.20.0",
"typescript": "^3.7.5"
},
"dependencies": {
"randomstring": "^1.1.5",
"temp-dir": "^2.0.0"
}
}