-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
48
49
50
51
52
{
"name": "tiny-fsearch",
"version": "3.1.0",
"license": "MIT",
"author": "Reuben Roessler",
"description": "A small and versatile file-search library",
"main": "./dist/index.js",
"types": "./typings/index.d.ts",
"files": [
"src/**/*",
"dist/**/*",
"tools/**/*",
"typings/**/*",
"binding.gyp"
],
"scripts": {
"prepublishOnly": "run-s build",
"build": "npm-run-all clean --parallel build:*",
"build:ts": "tsc",
"dist": "run-s build dist:*",
"dist:gyp": "node-gyp configure && node-gyp build --jobs 17",
"test": "ava --concurrency 1",
"clean": "run-p clean:*",
"clean:ts": "rimraf dist typings",
"clean:gyp": "rimraf build"
},
"keywords": [],
"devDependencies": {
"@types/bindings": "^1.5.1",
"@types/node": "^18.15.11",
"ava": "^5.2.0",
"node-addon-api": "^6.0.0",
"node-gyp": "^9.3.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"ava": {
"files": [
"lib/tests/**/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"bindings": "^1.5.0"
}
}