-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 769 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 769 Bytes
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
{
"name": "node-aspell",
"version": "1.0.0",
"description": "Node.js bindings for aspell",
"keywords": [
"aspell",
"spell check",
"spell checker"
],
"license": "LGPL-2.1-only",
"contributors": [
"Eddie Potocko <epotocko@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/epotocko/node-aspell.git"
},
"bugs": {
"url": "https://github.com/epotocko/node-aspell/issues"
},
"main": "index.js",
"gypfile": true,
"scripts": {
"test": "mocha",
"build": "node-gyp rebuild",
"clean": "node-gyp clean"
},
"engines" : {
"node" : ">=18.0.0"
},
"dependencies": {
"node-addon-api": "^8.1.0"
},
"devDependencies": {
"mocha": "^10.7.3",
"node-gyp": "^10.2.0"
}
}