-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "faucet-pipeline-js",
"version": "3.0.1",
"description": "JavaScript module bundling for faucet-pipeline",
"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-js.git"
},
"bugs": {
"url": "https://github.com/faucet-pipeline/faucet-pipeline-js/issues"
},
"main": "lib/index.js",
"scripts": {
"test": "npm-run-all lint --parallel test:unit test:cli",
"test:cli": "./test/cli/run",
"test:unit": "mocha test/unit/test_*.js",
"lint": "eslint --cache --ext .js --ext .jsx lib bin/validate-dependencies test/unit samples pkg && echo ✓"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@rollup/plugin-commonjs": "~25.0.7",
"@rollup/plugin-node-resolve": "~15.2.3",
"faucet-pipeline-core": "^2.0.0",
"rollup": "^4.3.0",
"rollup-plugin-cleanup": "~3.2.1"
},
"devDependencies": {
"eslint-config-fnd-jsx": "^1.8.0",
"faucet-pipeline-esnext": "file:pkg/faucet-pipeline-esnext",
"faucet-pipeline-jsmin": "file:pkg/faucet-pipeline-jsmin",
"faucet-pipeline-jsx": "file:pkg/faucet-pipeline-jsx",
"faucet-pipeline-typescript": "file:pkg/faucet-pipeline-typescript",
"json-diff": "^1.0.6",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"release-util-fnd": "^3.0.0"
}
}