-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 942 Bytes
/
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
{
"name": "vendurl",
"version": "0.3.0",
"description": "Vendor (verb: download and store) a JS dependency from a URL.",
"author": "tbeseda",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tbeseda/vendurl.git"
},
"type": "module",
"main": "index.js",
"bin": {
"vendurl": "index.js"
},
"scripts": {
"lint": "eslint .",
"lint.fix": "npm run lint -- --fix",
"release": "release-it",
"test": "cd test && bash ./test.sh"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"release-it": "^17.0.0"
},
"eslintConfig": {
"extends": "standard",
"ignorePatterns": [
"**/vendor"
],
"rules": {
"space-unary-ops": 0,
"comma-dangle": [
"error",
"always-multiline"
]
}
},
"keywords": [
"javascript",
"vendor",
"bundle",
"esm.sh"
]
}