-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "@foresthoffman/bfs",
"version": "1.0.4",
"description": "Module for asynchronous reading and requiring of JavaScript modules without touching the host FS",
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.json"
},
"main": "dist/src/bfs.js",
"types": "dist/src/bfs.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/foresthoffman/bfs.git"
},
"keywords": [
"stream",
"require",
"buffer",
"tar"
],
"author": "Forest Hoffman",
"license": "MIT",
"bugs": {
"url": "https://github.com/foresthoffman/bfs/issues"
},
"homepage": "https://github.com/foresthoffman/bfs#readme",
"dependencies": {
"path": "^0.12.7",
"tar-stream": "^2.1.0"
},
"devDependencies": {
"@coder/logger": "^1.1.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/tar-stream": "^2.2.0",
"child_process": "^1.0.2",
"fs": "^0.0.1-security",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^4.2.4"
}
}