-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "cld3",
"description": "Unofficial Node.js bindings for Compact Language Detector v3 (CLD3)",
"version": "2.0.6",
"main": "index.js",
"type": "module",
"scripts": {
"pre-build": "node scripts/pre-build.js",
"post-build": "node scripts/post-build.js",
"build": "npm run pre-build && npm run cmake && npm run post-build",
"cmake": "CXX=/usr/bin/clang++ CC=/usr/bin/clang cmake-js rebuild",
"lint": "eslint --config eslintrc.cjs --ext .js,.cjs .",
"test": "node --test"
},
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^7.2.1",
"node-addon-api": "^6.1.0"
},
"devDependencies": {
"@hapi/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-sort-class-members": "^1.16.0",
"eslint-plugin-unused-imports": "^2.0.0"
},
"files": [
"index.js",
"cld3.cjs",
"addons/*.node"
]
}