-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "@mitm/chuck-ifc",
"version": "0.0.0-semantic-release",
"description": "Chuck plugin that converts Industry Foundation Classes 3D models with IfcOpenShell",
"contributors": [
"Tristan Zimpfer <tristan.zimpfer@methodinthemadness.eu>",
"Morgan Touverey Quilling <mtouverey@methodinthemadness.eu>"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn lint && tsc",
"watch": "tsc -w",
"lint": "tslint \"src/**/*.ts\"",
"semantic-release": "semantic-release pre && npm publish --access public && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/mitmadness/chuck-ifc.git"
},
"bugs": {
"url": "https://github.com/mitmadness/chuck-ifc/issues"
},
"homepage": "https://github.com/mitmadness/chuck-ifc#readme",
"devDependencies": {
"@types/fs-extra": "^3.0.2",
"@types/node": "^7.0.18",
"semantic-release": "^6.3.6",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
},
"dependencies": {
"@mitm/chuck": ">=1.0.0",
"fs-extra": "^3.0.1"
},
"peerDependencies": {
"@mitm/chuck": ">=1.0.0"
}
}