-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "@vanillaes/jqkill",
"version": "1.1.1",
"description": "Locate all references to jQuery for easy removal",
"keywords": [
"jquery",
"nodejs",
"cli",
"developer-tools"
],
"repository": "https://github.com/vanillaes/jqkill",
"author": "Evan Plaice <evanplaice@gmail.com> (https://evanplaice.com/)",
"license": "MIT",
"type": "module",
"bin": {
"jqkill": "bin/jqkill.js"
},
"exports": {
".": {
"import": "./src/index.js",
"types": "./src/index.d.ts"
}
},
"scripts": {
"test": "esmtk test",
"lint": "esmtk lint",
"type": "esmtk type --types node && esmtk type --types node bin/jqkill.js",
"build": "esmtk typings --types node",
"clean": "esmtk clean --typings",
"preview": "esmtk preview",
"preversion": "npm test && npm run lint && npm run type",
"version": "npm run clean && npm run build && git add **/*.d.ts",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@vanillaes/esmtk": "^2.5.0",
"commander": "^14.0.3"
},
"devDependencies": {
"@types/node": "^25.5.0"
},
"lint": {
"ignore": [
"**/__test__/*"
]
}
}