-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.3 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
{
"name": "make-bookmarklet",
"version": "1.5.0",
"description": "A Node program to convert small JavaScript files to bookmarklet-ready code.",
"main": "src/make-bookmarklet.js",
"engines": {
"node": ">=14.16"
},
"scripts": {
"lint": "semistandard",
"lint:fix": "semistandard --fix",
"minor": "npm version minor",
"patch": "npm version patch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinashworth/make-bookmarklet.git"
},
"keywords": [
"bookmarklet",
"JavaScript",
"Node"
],
"author": "Kevin Ashworth",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinashworth/make-bookmarklet/issues"
},
"homepage": "https://github.com/kevinashworth/make-bookmarklet#readme",
"dependencies": {
"chalk": "4.1.2",
"clipboardy": "2.3.0",
"commander": "9.4.1",
"jest": "29.3.1",
"prettier": "2.8.1",
"semistandard": "16.0.1"
},
"semistandard": {
"globals": [
"$",
"describe",
"expect",
"fit",
"it",
"test",
"xit"
],
"ignore": [
"/examples/archive/",
"/examples/bookmarklets/",
"/examples/**/*output*.js",
"/examples/shortwave/sw.js",
"/test_inputs/",
"/src/__tests__/__fixtures__/"
]
}
}