-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
60
61
62
63
{
"name": "grunt-k3po",
"description": "Plugin to utilize k3po (https://github.com/k3po/k3po) from grunt builds",
"license" : "Apache-2.0",
"version": "0.1.0-alpha-1",
"homepage": "https://github.com/kaazing/grunt-k3po",
"author": {
"name": "Kaazing",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/kaazing/grunt-k3po"
},
"bugs": {
"url": "https://github.com/kaazing/grunt-k3po/issues"
},
"licenses": [
{
"type": "Apache 2",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"require": {
"java": "^0.2.0"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-jshint": "^0.9.2",
"grunt-contrib-nodeunit": "^0.3.3"
},
"dependencies": {
"java": "^0.6.0",
"node-java-maven": "0.0.9"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"keywords": [
"gruntplugin", "k3p0", "kaazing", "robot"
],
"java": {
"dependencies": [
{
"groupId": "org.kaazing",
"artifactId": "k3po.driver",
"version": "3.0.0-alpha-1"
},
{
"groupId": "org.kaazing",
"artifactId": "specification.ws",
"version": "3.0.0-alpha-1"
}
]
}
}