-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "kicad-to-json",
"version": "1.3.0",
"main": "index.js",
"author": "Jason Thorpe",
"keywords": [
"kicad",
"json",
"yaml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jdthorpe/kicad-module-parser.git"
},
"license": "MIT",
"scripts": {
"build": "yarn build:module && yarn build:symbol && yarn build:package",
"build:module": "npx pegjs -o src/module-parser.js --allowed-start-rules module,board ./src/module.pegjs",
"build:symbol": "npx pegjs -o src/symbol-parser.js --allowed-start-rules kicad_symbol_lib ./src/symbol.pegjs",
"build:package": "tsc",
"build:tests": "tsc -p ./test",
"watch": "npx nodemon",
"test": "yarn build:tests && node test/"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/fs-extra": "^9.0.1",
"@types/js-yaml": "^4.0.2",
"@types/klaw": "^3.0.1",
"@types/through2": "^2.0.36",
"pegjs": "^0.10.0",
"prettier": "^3.2.5",
"prettier-plugin-pegjs": "^2.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"ajv": "^8.6.2",
"argparse": "^2.0.1",
"chalk": "^4.1.2",
"fs-extra": "^9.0.1",
"js-yaml": "^4.1.0",
"klaw": "^3.0.0",
"through2": "^4.0.2"
},
"bin": {
"k2j": "./bin/k2j"
},
"prettier": {
"plugins": ["prettier-plugin-pegjs"]
}
}