forked from asherkin/nodeJavaDeserialization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "java-deserialization",
"version": "0.1.0",
"description": "Parse Java object serialization format using pure JavaScript",
"main": "src/main/node/index.js",
"scripts": {
"built": "echo 'build here'",
"lint": "echo 'no linting setup yet'",
"test": "nyc --reporter=html --reporter=text-summary mocha src/test/node/*.js",
"gentest": "java -classpath target/classes io.github.gagern.nodeJavaDeserialization.GenerateTestCases > src/test/node/generated.js && npm test",
"package": "echo 'make publishable artifact here'"
},
"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": {
"@types/node": "^10.17.55",
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"long": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}