-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.41 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
101
102
103
104
105
{
"name": "@balupton/dorothy",
"private": true,
"version": "0.0.1",
"description": "Benjamin Lupton's user configuration for Dorothy",
"homepage": "https://github.com/balupton/dorothy",
"license": "RPL-1.5",
"keywords": [
"automation",
"bash",
"bash",
"cli",
"dotfile",
"dotfiles",
"fish-shell",
"fish",
"fish",
"linux",
"macos",
"productivity",
"sh",
"shell",
"terminal",
"typescript",
"ubuntu",
"unix",
"windows",
"wsl",
"wsl2",
"zsh"
],
"funding": "https://bevry.me/fund",
"author": "2013+ Benjamin Lupton <b@lupton.cc> (https://balupton.com)",
"maintainers": [
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
],
"contributors": [
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
],
"bugs": {
"url": "https://github.com/balupton/dorothy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/balupton/dorothy.git"
},
"engines": {
"node": ">=18"
},
"editions": [
{
"description": "Source Code",
"directory": ".",
"tags": [
"source",
"shell",
"bash",
"zsh",
"deno",
"typescript"
],
"engines": {
"node": "18"
}
}
],
"devDependencies": {
"@bevry/update-contributors": "^1.23.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint-config-bevry": "^5.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"projectz": "^4.2.0",
"valid-directory": "^4.9.0"
},
"scripts": {
"our:meta": "npm run our:meta:contributors && npm run our:meta:projectz",
"our:meta:contributors": "update-contributors",
"our:meta:projectz": "projectz compile",
"our:setup": "npm run our:setup:install",
"our:setup:install": "npm install",
"our:test": "./commands/dorothy test",
"our:verify": "npm run our:verify:directory && npm run our:verify:dorothy",
"our:verify:directory": "valid-directory",
"our:verify:dorothy": "./commands/dorothy lint"
},
"eslintConfig": {
"extends": [
"bevry"
],
"rules": {
"require-atomic-updates": 0,
"no-console": 0,
"no-use-before-define": 1,
"valid-jsdoc": 0
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}