-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "bimserverapi",
"groupId": "org.opensourcebim",
"artifactId": "javascriptapi",
"organization": "OpenSource BIM",
"version": "0.0.167",
"description": "A JavaScript API for the OpenSource BIMserver",
"author": {
"name": "Ruben de Laat",
"email": "[email protected]"
},
"scripts": {
"build": "rollup -c"
},
"files": [
"*.js"
],
"main": "build/bimserverapi.js",
"module": "bimserverclient.js",
"repository": {
"type": "git",
"url": "https://github.com/opensourceBIM/BIMserver-JavaScript-API"
},
"bugs": {
"url": "https://github.com/opensourceBIM/BIMserver-JavaScript-API/issues"
},
"keywords": [],
"browser": {
"xhr2": false,
"websocket": false
},
"dependencies": {
"websocket": "*",
"xhr2": "*"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"grunt": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-nodeunit": "*",
"grunt-contrib-uglify": "*",
"grunt-zip": "*",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"preferGlobal": true,
"private": false,
"analyze": true,
"license": "AGPL-3.0",
"readmeFilename": "README.md",
"tonicExampleFilename": "tonicExample.js"
}