-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 969 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
{
"name": "@npilots/norc",
"version": "0.5.1",
"description": "Nodejs ORC file reader/writer",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "alsatian ./spec/writer.js && alsatian ./spec/reader.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corymickelson/norc.git"
},
"keywords": [
"apache",
"orc",
"node-addon-api"
],
"author": "Cory Mickelson",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/corymickelson/norc/issues"
},
"homepage": "https://github.com/corymickelson/norc#readme",
"dependencies": {
"bindings": "^1.3.0"
},
"devDependencies": {
"@types/node": "^10.12.2",
"alsatian": "^2.3.0",
"cmake-js": "^3.7.3",
"fast-csv": "^2.4.1",
"node-addon-api": "1.6.0",
"tap-bark": "^1.0.0"
},
"files": [
"package.json",
"index.d.ts",
"index.js",
"CMakeLists.txt",
"src",
"include"
]
}