-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 866 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 866 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
35
36
37
38
{
"name": "@athombv/data-types",
"version": "1.2.0",
"description": "Binary Data Parsers",
"main": "index.js",
"types": "index.d.ts",
"files": [
"/lib",
"/index.js",
"/index.d.ts"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "mocha --extension test.js test",
"lint": "eslint ."
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/athombv/node-data-types.git"
},
"author": "Jeroen Vollenbrock <jeroen@athom.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/athombv/node-data-types/issues"
},
"homepage": "https://github.com/athombv/node-data-types#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"eslint": "^6.8.0",
"eslint-config-athom": "^2.0.8",
"mocha": "^10.2.0"
}
}