forked from adriano-di-giovanni/node-df
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
53
54
55
56
57
{
"name": "node-df",
"version": "0.1.4",
"description": "A cross-platform Node.js wrapper around the standard Unix computer program, df.",
"main": "lib/index.js",
"scripts": {
"precommit": "lint-staged",
"test:coverage": "npm test -- --coverage",
"test": "jest"
},
"author": "Adriano Di Giovanni <[email protected]> (http://adrianodigiovanni.com/)",
"license": "MIT",
"dependencies": {
"shell-escape": "^0.2.0",
"underscore": "^1.6.0"
},
"devDependencies": {
"async": "^2.6.0",
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
},
"repository": {
"type": "git",
"url": "https://github.com/adriano-di-giovanni/node-df.git"
},
"keywords": [
"node",
"df",
"disk",
"free",
"diskfree"
],
"bugs": {
"url": "https://github.com/adriano-di-giovanni/node-df/issues"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/adriano-di-giovanni/node-df"
}