-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.22 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
{
"name": "fluid-launcher",
"version": "1.0.0",
"description": "A launcher that merges options from the command line, environment, options files with the launcher defaults.",
"main": "index.js",
"scripts": {
"pretest": "node node_modules/rimraf/bin.js coverage/*",
"test": "node node_modules/istanbul/lib/cli.js cover --report none --print none --include-pid tests/js/all-tests.js",
"posttest": "node node_modules/istanbul/lib/cli.js report --root coverage --dir reports lcov text-summary"
},
"bin": "./src/js/wrapper.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-project/fluid-launcher.git"
},
"author": "Tony Atkins <tony@raisingthefloor.org>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/fluid-project/fluid-launcher/",
"dependencies": {
"infusion": "3.0.0-dev.20200326T173810Z.24ddb2718",
"kettle": "1.15.0",
"yargs": "15.4.1"
},
"devDependencies": {
"eslint": "7.5.0",
"eslint-config-fluid": "1.4.0",
"fluid-grunt-lint-all": "1.0.8",
"grunt": "1.2.1",
"node-jqunit": "1.1.8",
"istanbul": "0.4.5",
"rimraf": "3.0.2"
}
}