forked from sindresorhus/conf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "conf",
"version": "10.1.2",
"description": "Simple config handling for your app or module",
"license": "MIT",
"repository": "sindresorhus/conf",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"main": "dist/source",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && npm run build && nyc ava",
"build": "del-cli dist && tsc",
"prepack": "npm run build"
},
"files": [
"dist/source"
],
"keywords": [
"config",
"store",
"app",
"storage",
"conf",
"configuration",
"settings",
"preferences",
"json",
"data",
"persist",
"persistent",
"save",
"load",
"read",
"write",
"cache"
],
"dependencies": {
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"atomically": "^1.7.0",
"debounce-fn": "^4.0.0",
"dot-prop": "^6.0.1",
"env-paths": "^2.2.1",
"json-schema-typed": "^7.0.3",
"onetime": "^5.1.2",
"pkg-up": "^3.1.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/node": "^14.14.41",
"@types/semver": "^7.3.4",
"@types/write-file-atomic": "^3.0.1",
"ava": "^3.15.0",
"clear-module": "^4.1.1",
"del": "^6.0.0",
"del-cli": "^3.0.1",
"delay": "^5.0.0",
"nyc": "^15.1.0",
"p-event": "^4.2.0",
"tempy": "^1.0.1",
"tsd": "^0.14.0",
"typescript": "^4.4.3",
"xo": "^0.38.2"
},
"types": "dist/source",
"ava": {
"files": [
"test/*",
"!test/index.test-d.ts"
],
"timeout": "1m",
"typescript": {
"rewritePaths": {
"test/": "dist/test/"
}
}
},
"xo": {
"rules": {
"@typescript-eslint/no-implicit-any-catch": "off"
}
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/test/**"
]
}
}