forked from alphacep/ref-union-di
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "@tigerconnect/ref-union-di",
"description": "Create ABI-compliant \"union\" instances on top of Buffers",
"keywords": [
"union",
"ref",
"abi",
"c",
"c++",
"ffi"
],
"version": "1.0.1-tc15",
"author": "Anna Henningsen <[email protected]>",
"contributors": [
"Nathan Rajlich <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/tigertext/node-ref-union-di.git"
},
"files": [
"dist"
],
"es2015": "./dist/union.esm.js",
"main": "./dist/union.cjs.js",
"module": "./dist/union.js",
"types": "./dist/union.d.ts",
"license": "MIT",
"scripts": {
"build": "run-s clean build:dist build:module build:rollup build:types",
"build:dist": "shx mkdir -p dist",
"build:module": "shx cp -f lib/union.js dist",
"build:rollup": "rollup -c rollup.config.js",
"build:types": "shx cp -f lib/union.d.ts dist",
"clean": "shx rm -fr dist",
"prepublishOnly": "run-s build",
"test": "run-s build test:rebuild test:mocha",
"test:rebuild": "node-gyp rebuild --directory test",
"test:mocha": "mocha --expose-gc --reporter spec"
},
"dependencies": {
"@tigerconnect/ref-napi": "^4.0.0-tc8",
"debug": "^4.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.2",
"@rollup/plugin-node-resolve": "^8.4.0",
"mocha": "^7.1.1",
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"ref-struct-di": "^1.1.1",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^6.1.0",
"shx": "^0.3.4"
}
}