-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.68 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
{
"name": "dotpref",
"version": "0.0.0-development",
"description": "Perfect for CLI application user preferences.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Graeme Cassels (https://github.com/cassels)",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll --no-coverage",
"lint": "eslint src",
"build": "yarn clean && tsc",
"build:watch": "tsc --watch ",
"clean": "rm -rf lib",
"semantic-release": "semantic-release --dry-run=$SEMANTIC_RELEASE_DRYRUN"
},
"keywords": [
"pref",
"prefs",
"preferences",
"conf",
"config",
"configuration",
"store",
"storage",
"settings",
"secure",
"cli",
"data",
"encrypted",
"persist",
"persistent",
"save",
"load",
"read",
"write",
"cache"
],
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^16.11.68",
"@types/onetime": "^4.0.0",
"@types/pkg-up": "^3.1.0",
"@types/write-file-atomic": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"semantic-release": "18.0.1",
"ts-jest": "^28.0.8",
"typescript": "^4.8.4"
},
"dependencies": {
"mem": "^8.1.1",
"pkg-up": "^3.1.0",
"write-file-atomic": "^3.0.3"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/cassels/dotpref.git"
},
"contributors": [
"Graeme Cassels (https://github.com/cassels)"
],
"files": [
"lib"
]
}