forked from opensourceBIM/BIMserver-JavaScript-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.37 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "bimserverapi",
"groupId": "org.opensourcebim",
"artifactId": "javascriptapi",
"organization": "OpenSource BIM",
"version": "1.0.0",
"description": "A JavaScript API for the OpenSource BIMserver",
"author": {
"name": "Ruben de Laat",
"email": "ruben@logic-labs.nl"
},
"scripts": {
"build": "tsc",
"test:debug": "nodemon --config nodemon-test.json",
"test": "nyc mocha test/unit/*.spec.ts test/int/*.spec.ts",
"test:unit": "nyc mocha test/unit/*.spec.ts",
"test:int": "nyc mocha test/int/*.spec.ts",
"coverage": "nyc report",
"start:debug": "nodemon --config nodemon-debug.json"
},
"files": [
"*.js"
],
"main": "dist/bimserverapi.js",
"types": "dist/bimserverapi.d.ts",
"module": "bimserverclient.ts",
"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": {
"xhr2": "*"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/ws": "^6.0.1",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"grunt": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-nodeunit": "*",
"grunt-contrib-uglify": "*",
"grunt-zip": "*",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"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",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"typescript": "^3.1.3",
"ws": "^6.1.0",
"nyc": "^13.0.1",
"source-map-support": "^0.5.5"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"*.ts"
],
"reporter": [
"text",
"html"
],
"all": true,
"check-coverage": true,
"statements": 0,
"functions": 0,
"branches": 0,
"lines": 0
},
"preferGlobal": true,
"private": false,
"analyze": true,
"license": "AGPL-3.0",
"readmeFilename": "README.md",
"tonicExampleFilename": "tonicExample.js"
}