-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 908 Bytes
/
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
{
"name": "lstat",
"version": "0.2.0",
"description": "Promise-based `lstat`",
"repository": "shinnn/lstat",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"pretest": "eslint --fix --format=codeframe index.js test.js",
"test": "nyc node --throw-deprecation --harmony_async_await test.js"
},
"license": "MIT",
"files": [
"index.js"
],
"keywords": [
"stat",
"lstat",
"file",
"link",
"info",
"mode",
"nlink",
"uid",
"gid",
"rdev",
"fs",
"promise",
"promisified",
"async"
],
"dependencies": {
"graceful-fs": "^4.1.11"
},
"devDependencies": {
"@shinnn/eslint-config-node-legacy": "^3.0.0",
"create-symlink": "^0.1.0",
"eslint": "^3.15.0",
"nyc": "^10.1.2",
"rmfr": "^1.0.2",
"tape": "^4.6.3"
},
"eslintConfig": {
"extends": "@shinnn/node-legacy"
}
}