-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 978 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
{
"name": "file-essentials",
"version": "0.1.2",
"description": "a common set of filesystem helpers",
"main": "index.js",
"scripts": {
"test": "set NODE_ENV=test && mocha --ui tdd test",
"style": "eslint index.js lib/ test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cepharum/file-essentials.git"
},
"keywords": [
"files"
],
"author": "Thomas Urban",
"license": "MIT",
"bugs": {
"url": "https://github.com/cepharum/file-essentials/issues"
},
"homepage": "https://github.com/cepharum/file-essentials#readme",
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-cepharum": "^1.0.12",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.3.2",
"should": "^13.2.3"
},
"dependencies": {
"@types/node": "^13.13.2"
}
}