-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 974 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
{
"name": "faucet-pipeline-core",
"version": "2.0.0",
"description": "faucet-pipeline's core library",
"author": "FND",
"contributors": [
"Lucas Dohmen <[email protected]>"
],
"license": "Apache-2.0",
"homepage": "https://www.faucet-pipeline.org",
"repository": {
"type": "git",
"url": "https://github.com/faucet-pipeline/faucet-pipeline-core.git"
},
"bugs": {
"url": "https://github.com/faucet-pipeline/faucet-pipeline-core/issues"
},
"main": "lib/index.js",
"bin": {
"faucet": "bin/faucet"
},
"scripts": {
"test": "npm-run-all --parallel lint test:unit",
"test:unit": "mocha test/test_*.js",
"lint": "eslint --cache lib bin/* test test/bin/* && echo ✓"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"browserslist": "~4.22.1",
"minimist": "~1.2.7",
"nite-owl": "~5.0.5"
},
"devDependencies": {
"eslint-config-fnd": "^1.13.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"release-util-fnd": "^3.0.0"
}
}