-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.38 KB
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.14.2",
"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 .",
"pretest": "node -e \"require('fs').rmSync('./coverage',{force:true,recursive:true});require('fs').mkdirSync('./coverage',{recursive:true});\"",
"test": "node --test --test-concurrency=1 --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=./coverage/lcov.info tests/unit/**"
},
"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": "^10.0.1",
"eslint": "^10.8.1",
"globals": "^17.9.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/localnerve"
},
{
"type": "paypal",
"url": "https://www.paypal.com/ncp/payment/DHCB5GUYMGX5U"
}
],
"engines": {
"node": ">= 22"
}
}