-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "picklr",
"version": "0.11.7",
"description": "A utility to update a single line in multiple files",
"main": "index.js",
"type": "module",
"exports": {
"import": "./index.js",
"default": "./index.js"
},
"scripts": {
"lint": "eslint .",
"test": "mocha tests/unit --recursive --reporter spec",
"test:debug": "mocha tests/unit --recursive --reporter spec --node-option inspect-brk",
"cover": "c8 -- npm test",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/localnerve/picklr.git"
},
"keywords": [
"pick",
"line",
"replace",
"multiple",
"file",
"text",
"copyright"
],
"author": "Alex Grant (@localnerve)",
"license": "MIT",
"bugs": {
"url": "https://github.com/localnerve/picklr/issues"
},
"homepage": "https://github.com/localnerve/picklr#readme",
"devDependencies": {
"@eslint/js": "^9.11.1",
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^9.11.1",
"globals": "^15.10.0",
"mocha": "^10.7.3",
"precommit-hook": "^3.0.0"
},
"pre-commit": [
"lint",
"test"
],
"engines": {
"node": ">= 18"
}
}