-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
58 lines (58 loc) · 1.31 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": "dxf-parser",
"version": "1.1.2",
"description": "Parse dxf files into a readable, logical js object.",
"type": "module",
"main": "./commonjs/index.js",
"module": "./esm/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./commonjs/index.js"
},
"types": "./esm/index.d.ts",
"scripts": {
"test": "mocha --require @babel/register test",
"dev": "tsc -w & webpack --mode development",
"prod": "tsc && webpack --mode production",
"prepublishOnly": "npm run prod"
},
"repository": {
"type": "git",
"url": "https://github.com/gdsestimating/dxf-parser.git"
},
"bugs": {
"url": "https://github.com/gdsestimating/dxf-parser/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/gdsestimating/dxf-parser",
"author": "GDS Storefront Estimating (gdsestimating.com)",
"contributors": [
"Ben Zuill-Smith <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"approvals": "^3.0.5",
"mocha": "^8.0.1",
"should": "^13.2.3",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"loglevel": "^1.7.1"
},
"keywords": [
"dxf",
"cad",
"parser",
"reader"
],
"files": [
"commonjs",
"esm",
"src"
]
}