-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.06 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
{
"name": "binary-structured-objects",
"version": "0.0.6",
"description": "Binary Structured Objects is a javascript library for creating data schemas and serialize or deserialize javascript to and from binary",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha 'tests/**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firecraftgaming/binary-structured-objects.git"
},
"author": "Eliyah Sundström",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/firecraftgaming/binary-structured-objects/issues"
},
"homepage": "https://github.com/firecraftgaming/binary-structured-objects#readme",
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/node": "^16.11.12",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"ts-loader": "^9.2.6",
"ts-mockito": "^2.6.1",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}