This repository has been archived by the owner on Mar 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.65 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
{
"name": "pcb-stackup-core",
"version": "3.0.0",
"description": "Creates PCB stackup (top and bottom view) SVG renders from gerber-to-svg converters",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "standard lib/*.js example/*.js integration/*.js && npm run lint:test",
"lint:test": "standard --global beforeEach --global it --global describe test/*.js",
"fix": "standard --fix lib/*.js example/*.js integration/*.js && npm run fix:test",
"fix:test": "standard --fix --global beforeEach --global it --global describe test/*.js",
"test": "nyc mocha",
"posttest": "npm run lint",
"test:watch": "mocha --reporter dot --watch",
"pretest:integration": "browserify integration/client.js > integration/public/bundle.js",
"test:integration": "node integration/server.js",
"test:browser": "zuul --local -- ./test/*_test.js",
"test:sauce": "zuul -- ./test/*_test.js",
"coverage": "nyc report",
"coverage:html": "nyc report --reporter=html",
"coverage:ci": "nyc report --reporter=text-lcov | coveralls",
"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": "npm run coverage:ci",
"example": "node example/clockblock.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tracespace/pcb-stackup-core.git"
},
"keywords": [
"pcb",
"gerber",
"svg",
"gerber-to-svg",
"tracespace",
"circuit",
"hardware"
],
"contributors": [
"Mike Cousins <[email protected]> (http://cousins.io/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tracespace/pcb-stackup-core/issues"
},
"homepage": "https://github.com/tracespace/pcb-stackup-core",
"peerDependencies": {
"gerber-to-svg": "^2.0.0",
"whats-that-gerber": "^2.0.0"
},
"devDependencies": {
"async": "^2.1.4",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"domify": "^1.4.0",
"gerber-to-svg": "^2.0.0",
"hapi": "^16.1.0",
"inert": "^4.0.0",
"lodash.template": "^4.2.4",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"proxyquire": "^1.7.4",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.2.0",
"shortid": "^2.2.6",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"standard": "^8.6.0",
"whats-that-gerber": "^2.0.0",
"xhr": "^2.2.0",
"zuul": "^3.10.1",
"zuul-ngrok": "^4.0.0"
},
"dependencies": {
"color-string": "^1.4.0",
"lodash.isstring": "^4.0.1",
"viewbox": "^1.0.0",
"xml-element-string": "^1.0.0"
}
}