-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.56 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
64
{
"name": "pe-struct",
"version": "0.9.4",
"description": "A JavaScript library for loading PE (Portable Executable) file as a plain structural object.",
"author": "Anders Liu",
"license": "MIT",
"keywords": [
"PE",
".net",
"Portable Executable",
"Executable",
"exe",
"dll",
"netmodule",
"winmd",
"ecma 335"
],
"main": "./dist/pe-struct.js",
"repository": {
"type": "git",
"url": "https://github.com/anders-liu/pe-struct.git"
},
"bugs": {
"url": "https://github.com/anders-liu/pe-struct/issues"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-typescript": "^3.1.1",
"jest": "^16.0.2",
"ts-loader": "^0.9.5",
"typescript": "^2.0.3",
"typings": "^1.4.0",
"webpack": "^1.13.2",
"webpack-stream": "^3.2.0"
},
"dependencies": {},
"scripts": {
"test": "jest"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "out/test-results/",
"coverageReporters": [
"text",
"json",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/out/tsc/test/"
],
"moduleDirectories": [
"node_modules",
"out/webpack"
],
"testPathDirs": [
"./out/tsc/test"
],
"testRegex": "-test\\.js$",
"verbose": true
}
}