forked from gdsestimating/dxf-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "dxf-parser",
"version": "1.0.0-alpha.2",
"description": "Parse dxf files into a readable, logical js object.",
"main": "dist/dxf-parser.js",
"module": "src/index.js",
"scripts": {
"test": "mocha --require @babel/register test",
"start": "webpack --mode development",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/gdsestimating/dxf-parser.git"
},
"bugs": {
"url": "https://github.com/gdsestimating/dxf-parser/issues",
"email": "bzuillsmith@gmail.com"
},
"homepage": "https://github.com/gdsestimating/dxf-parser",
"author": "GDS Storefront Estimating (gdsestimating.com)",
"contributors": [
"Ben Zuill-Smith <bzuillsmith@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"approvals": "^3.0.5",
"loglevel": "^1.6.8",
"mocha": "^8.0.1",
"should": "^13.2.3",
"webpack": "^4.43.0"
},
"dependencies": {},
"keywords": [
"dxf",
"cad",
"parser",
"reader"
],
"files": [
"dist",
"src"
]
}