-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"name": "tsk-js",
"version": "0.5.1",
"description": "A module that allows you to investigate disk images using Javascript by using The Sleuth Kit as library.",
"main": "build/Release/tsk-js.node",
"author": "frg",
"types": "./typings/tsk-js/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register test/tsk.spec.ts",
"install": "node ./script/install.js",
"clean": "rm -rf build lib",
"build": "node-gyp rebuild",
"build:debug": "node-gyp build --debug",
"debug": "cd build; BUILDTYPE=Debug env TZ=UTC TSK_JS_DEBUG=true gdb -x ../script/gdbinit --args node -r ts-node/register ../test/partial-test.ts",
"docs:build": "./script/build-docs",
"docs:publish": "./script/publish-docs",
"docs:serve": "npx gitbook serve ./docs",
"npm:publish": "node ./script/publish-npm.js"
},
"license": "MIT",
"repository": "github:Img-Spy/tsk-js",
"keywords": [
"sleuth",
"kit",
"tsk"
],
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.31",
"chai": "^4.1.2",
"git-clone": "^0.1.0",
"hash-files": "^1.1.1",
"mocha": "^5.2.0",
"mocha-cli": "^1.0.1",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"node-gyp": "^4.0.0",
"rimraf": "^2.6.2",
"set-tz": "^0.2.0",
"temp": "^0.8.3",
"ts-node": "^7.0.0",
"turndown": "^4.0.2",
"typedoc": "^0.15.0"
},
"dependencies": {
"extract-zip": "^1.6.7",
"request": "^2.87.0",
"rxjs": "^6.0.0",
"ncp": "^2.0.0",
"rxjs-compat": "^6.0.0",
"zip-a-folder": "0.0.8"
}
}