forked from RobbieClarken/node-epics
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 955 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
{
"version": "0.0.10",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"/dist",
"/clibs"
],
"engines": {
"node": ">10 <=14"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "yarn format",
"prepare": "tsdx build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test && yarn build"
}
},
"name": "epics-ioc-connection",
"author": "onichandame",
"module": "dist/epics-base.esm.js",
"devDependencies": {
"@types/ffi-napi": "^2.4.1",
"@types/jest": "^25.2.1",
"husky": "^4.2.3",
"prettier": "^2.0.5",
"tsdx": "^0.13.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"ffi-napi": "^2.4.7",
"ref-struct-napi": "^1.1.0"
}
}