forked from Wulf/nodehun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.6 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
47
{
"name": "nodehun",
"version": "3.0.2",
"description": "The Hunspell binding for nodejs that exposes as much of hunspell as possible and also adds new features. Hunspell is a first class spellcheck library used by Google, Apple, and Mozilla.",
"license": "MIT",
"keywords": [
"spell",
"spellcheck",
"spellchecker",
"hunspell",
"spell check",
"spell checker",
"check"
],
"repository": "https://github.com/Wulf/nodehun",
"bugs": "https://github.com/Wulf/nodehun/issues",
"author": "Nathan Sweet <[email protected]>",
"contributors": [
"Nathan Sweet <[email protected]>",
"Haris Khan <[email protected]>",
"Titus Wormer <[email protected]>",
"Espen Hovlandsdal <[email protected]>",
"Thomas Beverley <[email protected]>"
],
"main": "build/Release/Nodehun",
"types": "src/Nodehun.d.ts",
"gypfile": true,
"dependencies": {
"node-addon-api": "*"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.6",
"bindings": "~1.2.1",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"ts-node": "^8.4.1",
"typescript": "^3.7.2"
},
"scripts": {
"start": "nodemon -e ts,js,cc,h,gyp -x \"npm run build && npm run test\"",
"start-test": "nodemon -e ts,js -x \"npm run test\"",
"build": "node-gyp rebuild -j 8",
"test": "ts-node --transpile-only node_modules/mocha/bin/mocha ./test/*.spec.ts",
"performance-test": "echo \"This command only works with node version 11 or lower!\" && npm i [email protected] [email protected] [email protected] && ts-node test/performance/performance.ts"
}
}