-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 906 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
34
35
36
37
38
39
{
"name": "windows-binary-architecture",
"version": "1.1.2",
"description": "Find the architecture EXE and DLL files are built for.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --declaration index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doctolib/windows-binary-architecture.git"
},
"keywords": [
"windows",
"exe",
"dll",
"architecture",
"pe",
"coff",
"i386",
"x86_64",
"amd64",
"x86"
],
"author": "Victor Schubert <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/doctolib/windows-binary-architecture/issues"
},
"homepage": "https://github.com/doctolib/windows-binary-architecture#readme",
"devDependencies": {
"@types/node": "^14.0.23",
"jest": "^24.9.0",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}