-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "@mac-brand-spaces/nexusdb",
"version": "1.0.1",
"description": "Node.js driver for NexusDB",
"main": "./src/index.js",
"types": "./types/types.d.ts",
"files": [
"src",
"types",
"bin"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:nodeGyp": "make build",
"build:dlls": "make build_dll",
"build": "make",
"prettier": "prettier --write \"src/**/*.js\" \"test/**/*.js\" \"*.js\"",
"eslint": "eslint --fix \"src/**/*.js\" \"test/**/*.js\" \"*.js\""
},
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"node-gyp": "^9.4.0",
"prettier": "^3.0.2"
},
"repository": "https://github.com/mac-brand-spaces/node-nexusdb",
"author": {
"name": "Marius Kehl",
"email": "[email protected]",
"url": "https://github.com/MeroFuruya"
},
"cpu": [
"x64",
"ia32"
],
"bugs": {
"url": "https://github.com/mac-brand-spaces/node-nexusdb/issues",
"email": "[email protected]"
},
"displayName": "node-nexusdb",
"keywords": [
"nexusdb",
"database",
"driver"
]
}