-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 912 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 912 Bytes
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
{
"name": "java-deserialization",
"version": "0.1.0",
"description": "Parse Java object serialization format using pure JavaScript",
"main": "src/index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text-summary mocha test/*.js",
"gentest": "cd test && javac *.java && java GenerateTestCases > generated.js && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gagern/nodeJavaDeserialization.git"
},
"keywords": [
"java",
"serialization",
"deserialization",
"format"
],
"author": "Martin von Gagern",
"license": "MIT",
"bugs": {
"url": "https://github.com/gagern/nodeJavaDeserialization/issues"
},
"homepage": "https://github.com/gagern/nodeJavaDeserialization#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0",
"nyc": "^11.4.1"
},
"dependencies": {
"long": "^3.2.0"
}
}