-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 1.46 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "java-class-tools",
"version": "1.3.2",
"description": "Read and write java class files in node or browser.",
"main": "lib/index.js",
"unpkg": "dist/java-class-tools.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/leonardosnt/java-class-tools.git"
},
"files": [
"index.js",
"dist",
"lib",
"typings.d.ts"
],
"types": "typings.d.ts",
"keywords": [
"java",
"class",
"disassembler",
"assembler",
"parser",
"decompiler",
"reader",
"writer",
"bytecode"
],
"author": "leonardosnt",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonardosnt/java-class-tools/issues"
},
"homepage": "https://github.com/leonardosnt/java-class-tools#readme",
"scripts": {
"test": "mocha test/tests.js",
"build": "gulp",
"watch": "gulp watch"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@types/bytebuffer": "^5.0.1",
"@types/node": "^7.0.18",
"babel-loader": "^8.0.6",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.2.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.2",
"jszip": "^3.2.2",
"mocha": "^6.2.2",
"tmp": "^0.1.0",
"utf8-string-bytes": "^1.0.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"bytebuffer": "^5.0.1"
}
}