This repository has been archived by the owner on Oct 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "gerber-parser",
"version": "1.1.1",
"description": "A PCB Gerber/drill-file parser implemented as a Node transform-stream",
"main": "lib/index.js",
"scripts": {
"lint": "eslint 'lib/*.js' 'test/*.js'",
"test": "nyc mocha",
"posttest": "npm run lint",
"test:watch": "mocha --reporter dot --timeout 500ms --watch",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcous/gerber-parser.git"
},
"keywords": [
"PCB",
"Gerber",
"drill",
"circuit",
"board",
"transform",
"stream",
"hardware",
"electronics"
],
"author": "Mike Cousins <mike@cousins.io> (http://cousins.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcous/gerber-parser/issues"
},
"homepage": "https://github.com/mcous/gerber-parser#readme",
"dependencies": {
"inherits": "^2.0.1",
"lodash.isfinite": "^3.3.1",
"lodash.padleft": "^3.1.3",
"lodash.padright": "^3.1.3",
"readable-stream": "^2.1.2"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.13.1",
"lodash.partial": "^4.1.4",
"lodash.repeat": "^4.0.2",
"mocha": "^2.4.5",
"nyc": "^7.1.0",
"zuul": "^3.10.1"
}
}