forked from datamadic/openfin-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "openfin-cli",
"version": "2.0.8",
"description": "OpenFin Runtime cli tool",
"homepage": "http://www.openfin.co",
"author": {
"name": "Ricardo de Pena",
"email": "ricardo@openfin.co",
"url": "http://www.openfin.co"
},
"engines": {
"node": ">=6"
},
"repository": "openfin/openfin-cli",
"license": "Apache-2.0",
"files": [
"index.js",
"cli.js",
"parse-url-or-file.js"
],
"keywords": [
"openfin-cli"
],
"dependencies": {
"hadouken-js-adapter": "^0.40.1",
"meow": "^5.0.0",
"openfin-config-builder": "latest",
"request": "^2.87.0"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-jsbeautifier": "^0.2.7",
"grunt-mocha-cli": "^4.0.0",
"jshint-stylish": "^1.0.0",
"load-grunt-tasks": "^4.0.0",
"time-grunt": "^1.0.0"
},
"scripts": {
"start": "node cli",
"test": "grunt mochacli"
},
"bin": {
"openfin": "cli.js"
}
}