-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 1.73 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
{
"name": "jspcb",
"description": "Javascript library for parsing printed circuit board (PCB) files (e.g., Eagle *.brd)",
"version": "0.1.18",
"author": {
"name": "Karl Lew",
"email": "karl@firepick.org",
"url": "http://www.firepick.org"
},
"homepage": "https://github.com/firepick/jspcb",
"repository": {
"type": "git",
"url": "git://github.com/firepick/jspcb.git"
},
"files": [
"lib/*",
"bin/*",
"index.js"
],
"keywords": [
"pcb",
"Eagle",
"Gerber",
"brd",
"parser",
"javascript",
"FirePaste",
"FirePick"
],
"scripts": {
"test": "grunt test"
},
"main": "./index.js",
"maintainers": [ {
"name": "Karl Lew",
"email": "karl@firepick.org"
}],
"contributors": [ {
"name": "Karl Lew",
"email": "karl@firepick.org"
}],
"bugs": {
"url": "http://github.com/firepick/jspcb/issues",
"email": "karl@firepick.org"
},
"license": "MIT",
"dependencies": {
"mathjs": "3.5.3",
"svg2png": "4.0.0",
"xmldom": "0.1.22"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-watch": "1.0.0",
"grunt-contrib-uglify": "0.2.4",
"grunt-jsbeautifier": "0.2.8",
"grunt-mocha-test": "~0.12.7",
"grunt-npm-install": "^0.2.0",
"grunt-simple-mocha": "0.4.0",
"mocha": "3.1.2",
"should": "5.0.1"
},
"bin": {
"jspcb": "./bin/jspcb.js"
},
"directories": {
"lib": "lib"
}
}