forked from tracespace/tracespace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.56 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
{
"name": "pcb-stackup",
"version": "3.0.0",
"description": "Creates PCB stackup (top and bottom view) SVG renders from gerber-to-svg converters",
"main": "index.js",
"scripts": {
"lint": "standard index.js example/*.js integration/*.js && npm run lint:test",
"lint:test": "standard --global beforeEach --global it --global describe test.js",
"fix": "standard --fix index.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": "node integration/list-boards.js && browserify integration/client.js > integration/public/bundle.js",
"test:integration": "node integration/server.js",
"test:browser": "zuul --local -- ./test.js",
"test:sauce": "zuul -- ./test.js",
"coverage": "nyc report",
"coverage:html": "nyc report --reporter=html",
"coverage:ci": "nyc report --reporter=lcov > coverage.lcov && codecov",
"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/arduino.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tracespace/pcb-stackup.git"
},
"keywords": [
"pcb",
"gerber",
"svg",
"gerber-to-svg",
"tracespace",
"circuit",
"hardware"
],
"contributors": [
"Mike Cousins <[email protected]> (http://cousins.io/)",
"Kaspar Emanuel <[email protected]> (http://monostable.co.uk)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tracespace/pcb-stackup/issues"
},
"homepage": "https://github.com/tracespace/pcb-stackup",
"devDependencies": {
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"domify": "^1.4.0",
"glob": "^7.0.5",
"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",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"standard": "^8.6.0",
"xhr": "^2.2.0",
"zuul": "^3.10.1",
"zuul-ngrok": "^4.0.0"
},
"dependencies": {
"gerber-to-svg": "^2.1.0",
"pcb-stackup-core": "https://github.com/MacroFab/pcb-stackup-core.git",
"shortid": "^2.2.6",
"whats-that-gerber": "^2.1.0"
}
}