-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.01 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
{
"name": "libkicad",
"version": "0.0.1",
"description": "Parsing, generation and equivalence checking for kicad netlists.",
"main": "lib/index.js",
"repository": "https://github.com/electron-lang/libkicad",
"author": "David Craven <[email protected]>",
"license": "ISC",
"files": [ "lib", "src" ],
"scripts": {
"prepare": "yarn build",
"build": "tsc",
"test": "yarn utest && yarn itest",
"utest": "mocha -r ts-node/register 'src/**/*.spec.ts'",
"itest": "mocha -r ts-node/register 'tests/*.ts'",
"publish:next": "lerna publish --registry=https://registry.npmjs.org/ --exact --canary=next --npm-tag=next --force-publish --skip-git --yes"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.6",
"chai": "^4.1.2",
"lerna": "^3.0.0-rc.0",
"mocha": "^5.2.0",
"proptest": "^0.0.4",
"ts-node": "^7.0.0",
"typescript": "^3.0.1"
},
"dependencies": {
"chevrotain": "^3.7.4",
"prettier-printer": "^1.1.2"
}
}