-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "struct-compile",
"version": "1.2.1",
"description": "Create a JavaScript class from a C structure",
"type": "module",
"main": "./build/index.cjs",
"files": [
"build/*",
"src/*"
],
"scripts": {
"test": "node --test test/*.test.js",
"test-cov-text": "node --test --experimental-test-coverage test/*.test.js",
"test-cov": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info test/*.test.js",
"create-diagram": "node src/createDiagram.js",
"generate-test-data": "node src/generateData.js",
"bundle": "rollup --config rollup.config.js",
"prepublishOnly": "npm run test && npm run bundle"
},
"keywords": [
"struct",
"C",
"cstruct",
"pack",
"unpack",
"binary"
],
"repository": {
"type": "git",
"url": "git://github.com/vaguue/struct-compile.git"
},
"homepage": "https://github.com/vaguue/struct-compile",
"bugs": {
"url": "https://github.com/vaguue/struct-compile/issues"
},
"author": "Seva D. <[email protected]>",
"license": "GPL-3.0",
"imports": {
"#src/*": "./src/*.js"
},
"exports": {
"node": {
"import": "./src/index.js",
"require": "./build/index.cjs"
}
},
"dependencies": {
"chevrotain": "^11.0.3"
},
"engines": {
"node": ">=16.18.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"rollup": "^4.9.2"
}
}