-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.57 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
59
{
"name": "fallback-dependencies",
"description": "A Node.js module that allows you to add git repo dependencies to your Node.js app from a cascading list of fallback locations.",
"author": "Roosevelt Framework Team <[email protected]>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/fallback-dependencies/graphs/contributors"
}
],
"version": "1.0.3",
"files": [
"fallback-dependencies.js"
],
"homepage": "https://github.com/rooseveltframework/fallback-dependencies",
"license": "CC-BY-4.0",
"main": "fallback-dependencies.js",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
},
"devDependencies": {
"c8": "10.1.3",
"codecov": "3.8.3",
"eslint": "9.17.0",
"eslint-plugin-mocha": "10.5.0",
"mocha": "11.0.1",
"standard": "17.1.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020
},
"plugins": [
"mocha"
],
"rules": {
"mocha/no-exclusive-tests": "error"
}
},
"mocha": {
"timeout": "500000ms"
},
"scripts": {
"codecov": "codecov",
"coverage": "c8 --reporter=text --reporter=lcov mocha test/*.js --test",
"lint": "standard && eslint test/test.js",
"lint-fix": "standard --fix",
"test": "mocha test/*.js",
"test-debug": "mocha --inspect-brk test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/fallback-dependencies.git"
},
"keywords": [],
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}