forked from skymakerolof/dxf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
{
"name": "dxf",
"version": "3.1.4",
"description": "DXF parser for node/browser",
"main": "lib/index.js",
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"lint": "standard",
"unit": "mocha --compilers js:babel-register --recursive test/unit/**",
"unit:watch": "npm run unit -- --watch",
"functional": "rimraf test/functional/output/* && mocha --compilers js:babel-register --recursive test/functional/**",
"functional:watch": "npm run unit -- --watch",
"test": "npm run lint && npm run unit && npm run functional",
"compile": "babel --optional runtime -d lib/ src/",
"dist": "browserify lib/index.js --standalone dxf -o dist/dxf.js",
"prepare": "npm run compile && npm run dist"
},
"repository": {
"type": "git",
"url": "git://github.com/bjnortier/dxf.git"
},
"keywords": [
"DXF",
"Parser",
"SVG"
],
"author": "Ben Nortier <ben@bjnortier.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjnortier/dxf/issues"
},
"homepage": "https://github.com/bjnortier/dxf",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0",
"browserify": "^14.5.0",
"chai": "^3.4.0",
"mocha": "^2.3.3",
"rimraf": "^2.6.2",
"standard": "^10.0.3"
},
"dependencies": {
"b-spline": "^1.0.5",
"lodash.clonedeep": "^3.0.2",
"lodash.isarray": "^3.0.4",
"lodash.isstring": "^3.0.1",
"pretty-data": "^0.40.0",
"vecks": "^3.4.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after"
],
"ignore": [
"lib/",
"dist/"
]
}
}