This repository has been archived by the owner on Jul 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
83 lines (83 loc) · 2.24 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
{
"name": "gerber-to-svg",
"version": "2.1.0",
"description": "Gerber and NC drill file to SVG converter",
"main": "lib/gerber-to-svg.js",
"bin": {
"gerber2svg": "bin/gerber2svg"
},
"scripts": {
"lint": "eslint bin/* lib/*.js test/*.js",
"test": "istanbul cover -x 'test-visual/*' --include-all-sources _mocha",
"posttest": "npm run lint",
"test:watch": "mocha --reporter dot --watch",
"test:visual": "node test-visual/server.js",
"test:browser": "zuul --local -- ./test/*_test.js",
"test:sauce": "zuul -- ./test/*_test.js",
"ci": "npm test && if [ \"${TEST_BROWSERS}\" = \"true\" ]; then npm run ci:browser; fi",
"ci:browser": "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then npm run test:sauce; fi",
"postci": "coveralls < ./coverage/lcov.info"
},
"precommit": [
"lint"
],
"repository": {
"type": "git",
"url": "git://github.com/tracespace/gerber-to-svg.git"
},
"keywords": [
"svg",
"gerber",
"excellon",
"drill",
"pcb",
"circuit",
"board",
"hardware",
"electronics",
"electrical",
"maker"
],
"author": "Mike Cousins <[email protected]> (http://cousins.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcous/gerber-to-svg/issues"
},
"homepage": "https://github.com/mcous/gerber-to-svg",
"devDependencies": {
"async": "^2.6.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"glob": "^7.0.3",
"hapi": "^17.3.1",
"inert": "^5.1.0",
"istanbul": "^0.4.0",
"lodash.assign": "^4.0.8",
"lodash.groupby": "^4.3.0",
"lodash.partial": "^4.1.3",
"lodash.template": "^4.2.4",
"mocha": "^5.0.5",
"pre-commit": "^1.1.2",
"proxyquire": "^1.8.0",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.2.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"zuul": "^3.7.2"
},
"dependencies": {
"chalk": "^2.3.2",
"escape-html": "^1.0.3",
"gerber-parser": "^1.1.0",
"gerber-plotter": "^2.0.0",
"inherits": "^2.0.1",
"lodash.isfinite": "^3.2.0",
"lodash.isstring": "^4.0.1",
"minimist": "^1.1.0",
"mkdirp": "^0.5.1",
"readable-stream": "^2.1.2",
"xml-element-string": "^1.0.0",
"xmlovely": "^1.0.0"
}
}