-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "edit-script",
"version": "3.0.0",
"description": "Edit npm scripts from the command line without worrying about json escaping.",
"keywords": [
"npm scripts",
"package.json",
"edit",
"json escaping"
],
"homepage": "https://github.com/RyanZim/edit-script#readme",
"bugs": "https://github.com/RyanZim/edit-script/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/RyanZim/edit-script.git"
},
"license": "MIT",
"author": "Ryan Zimmerman <opensrc@ryanzim.com>",
"type": "module",
"bin": "cli.js",
"files": [],
"scripts": {
"format": "eslint . --fix && prettier --write *.{js,md,yaml} && sort-package-json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"inquirer": "^9.1.4",
"jsonfile": "^6.1.0",
"pkg-up": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-problems": "^7.0.1",
"prettier": "^2.8.1",
"sort-package-json": "^2.1.0"
},
"engines": {
"node": ">=18"
}
}