-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
{
"name": "readsettings",
"version": "1.0.1",
"description": "Easily manage a configuration file for your application.",
"repository": "https://github.com/readsettings/node-readsettings.git",
"author": "Richie Bendall <richiebendall@gmail.com>",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"utils/get-extension.js",
"utils/get-file-provider.js",
"utils/remove-extension.js",
"utils/remove-file-part.js"
],
"engines": {
"node": ">=8.3"
},
"scripts": {
"lint": "eslint .",
"test": "yarn lint && ava"
},
"keywords": [
"conf",
"readsettings",
"storage"
],
"dependencies": {
"@iarna/toml": "^2.2.3",
"conf": "^6.1.0",
"js-yaml": "^3.13.1",
"json5": "^2.1.0",
"on-change": "^1.6.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/iarna__toml": "^2.0.0",
"@types/js-yaml": "^3.12.1",
"@types/json5": "^0.0.30",
"@types/node": "^12.7.5",
"ava": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-richienb": "^0.1.2",
"fs-extra": "^8.1.0"
},
"eslintConfig": {
"extends": "richienb/node"
}
}