-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1022 Bytes
/
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
{
"name": "qeda",
"version": "0.2.4",
"description": "QEDA — a tool for creating libraries of electronic components",
"main": "lib/qeda.js",
"bin": {
"qeda": "bin/qeda"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qeda/qeda.git"
},
"keywords": [
"EDA",
"KiCad",
"schematics",
"PCB",
"electronics",
"library"
],
"author": "QEDA Authors",
"contributors": [
"Filippo Savi <[email protected]>"
],
"homepage": "http://qeda.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/qeda/qeda/issues"
},
"scripts": {
"prepublish": "coffee -o lib -c src/",
"install": "scripts/install.js",
"postpublish": "rm -rf lib"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"rm-r": "^1.0.2"
},
"dependencies": {
"crc": "^3.4.0",
"js-yaml": "^3.5.3",
"mkdirp": "^0.5.1",
"nopt": "^3.0.6",
"sprintf-js": "^1.0.3",
"svg-path-parser": "^1.0.1",
"sync-request": "^3.0.0"
}
}