-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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": "compose.io",
"description": "Set of functionalities to handle COMPOSE Service Objects",
"version": "0.4.0",
"homepage": "https://github.com/compose-eu/Appcelerator",
"author": "Luca Capra",
"license": "Apache 2",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jasmine-node test/spec/ --captureExceptions",
"jsdoc": "jsdoc ./ -c=jsdoc.json -l -r"
},
"keywords": [
"compose",
"service-object",
"IoT"
],
"repository" : {
"type" : "git",
"url" : "https://github.com/compose-eu/Appcelerator.git"
},
"dependencies": {
"bluebird": "*",
"mqtt": "*",
"stompjs": "*"
},
"devDependencies": {
"jasmine-node": "*"
},
"browserify": {
},
"browser": {
"compose.io": "./index.js",
"utils/List": "./utils/List.js",
"client": "./client.js",
"WebObject": "./WebObject.js",
"ServiceObject": "./ServiceObject.js",
"platforms/stomp/browser": "./platforms/stomp/browser.js",
"platforms/mqtt/browser": "./platforms/mqtt/browser.js",
"platforms/http/browser": "./platforms/http/browser.js",
"stompjs": "./vendors/stompjs/stomp.min.js"
}
}