-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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": "scandir-native",
"version": "1.0.2",
"description": "A fs.scandir method with some features",
"license": "MIT",
"repository": "mrmlnc/scandir-native",
"author": {
"name": "Denis Malinochkin",
"url": "canonium.com"
},
"engines": {
"node": ">=4.0.0"
},
"main": "out/index.js",
"typings": "out/index.d.ts",
"keywords": [
"fs",
"scandir",
"dirent",
"performance",
"directory"
],
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.8",
"mocha": "^5.1.1",
"rimraf": "^2.6.2",
"tslint": "^5.10.0",
"tslint-config-xo": "^1.4.0",
"typescript": "^2.8.3"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.10.0"
},
"scripts": {
"clean": "rimraf out",
"lint": "tslint src/ts/**/*.ts -p .",
"compile": "tsc",
"test": "mocha out/*.spec.js -s 0",
"build-cpp": "node-gyp configure build",
"build-ts": "npm run clean && npm run lint && npm run compile",
"build": "npm run build-cpp && npm run build-ts && npm test",
"watch": "npm run clean && npm run lint && npm run compile -- --sourceMap --watch"
},
"gypfile": true
}