-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
89 lines (89 loc) · 2.34 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
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
{
"name": "dxf",
"version": "5.2.0",
"description": "DXF parser for node/browser",
"main": "lib/index.js",
"bin": {
"dxf-to-svg": "lib/cli.js"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"compile": "babel -d lib/ src/",
"dist": "browserify lib/index.js --standalone dxf -o dist/dxf.js",
"lint": "eslint src test",
"prepublishOnly": "npm run lint && npm run test && rimraf dist/ lib/ && npm run compile && npm run dist",
"prettier": "prettier --write .",
"test": "npm run test:unit",
"test:functional": "cd test/functional && webpack-dev-server",
"test:unit": "mocha --require @babel/register --recursive test/unit/**",
"test:unit:watch": "npm run test:unit -- --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/skymakerolof/dxf.git"
},
"keywords": [
"DXF",
"Parser",
"SVG"
],
"author": "Ben Nortier <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/skymakerolof/dxf/issues"
},
"homepage": "https://github.com/skymakerolof/dxf",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/register": "^7.24.6",
"babel-loader": "^9.1.3",
"browserify": "^16.5.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"expect": "^29.7.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.4",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"xml2js": "^0.6.2"
},
"dependencies": {
"commander": "^2.20.3",
"lodash": "^4.17.21",
"vecks": "^3.9.2"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after"
],
"ignore": [
"lib/",
"dist/"
]
}
}