-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.3 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.3 KB
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
{
"name": "@b4dnewz/temp",
"version": "0.0.3",
"description": "A node utility to handle temporary files and folders",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"prebuild": "npm run test",
"lint": "tslint -p . --fix",
"test": "jest",
"test:cover": "jest --coverage",
"build": "tsc",
"docs:build": "typedoc",
"docs:publish": "sh deploy.sh"
},
"author": {
"name": "b4dnewz",
"email": "[email protected]",
"url": "https://b4dnewz.github.io/"
},
"repository": "b4dnewz/node-temp",
"license": "MIT",
"keywords": [
"temp",
"temporary",
"tempfile",
"file",
"filename",
"random",
"mock",
"mocking",
"testing",
"test-utils",
"test-utilities",
"test-tools",
"string",
"buffer",
"stream"
],
"dependencies": {
"fs-extra": "^8.1.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.20",
"@types/node": "^12.11.7",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.4"
},
"publishConfig": {
"access": "public"
}
}