forked from lyngklip/structjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 862 Bytes
/
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
{
"name": "@aksel/structjs",
"version": "2.0.0",
"description": "Python struct for javascript",
"main": "struct.mjs",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRealAksel/structjs.git"
},
"keywords": [
"python",
"javascript",
"struct",
"structure",
"pack",
"unpack",
"pack_into",
"unpack_from",
"calcsize",
"size",
"format"
],
"author": "Aksel Jensen",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheRealAksel/structjs/issues"
},
"homepage": "https://github.com/TheRealAksel/structjs#readme",
"eslintConfig": {
"ecmaFeatures": {
"modules": true
}
},
"devDependencies": {
"mocha": "^7.1.2",
"should": "^13.2.3"
}
}