-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 925 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
{
"name": "pe.js",
"version": "1.0.0",
"description": "Portable Executable format reader for JavaScript.",
"main": "build-app.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@types/node": "^11.13.2",
"@types/react-dom": "^16.8.3",
"jssha": "^2.3.1",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"typescript": "^3.4.3"
},
"devDependencies": {},
"scripts": {
"build": "tsc -b ./app/tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mihailik/pe.js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mihailik/pe.js/issues"
},
"homepage": "https://github.com/mihailik/pe.js#readme"
}