forked from ergogen/ergogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "ergogen",
"version": "3.0.0",
"description": "Ergonomic keyboard layout generator",
"author": "Bán Dénes <[email protected]>",
"license": "MIT",
"homepage": "https://zealot.hu/ergogen",
"repository": "github:mrzealot/ergogen",
"bugs": "https://github.com/mrzealot/ergogen/issues",
"main": "./src/ergogen.js",
"bin": "./src/cli.js",
"scripts": {
"build": "rollup -c",
"test": "mocha -r test/helpers/register test/index.js",
"coverage": "nyc --reporter=html --reporter=text npm test"
},
"dependencies": {
"@jscad/openjscad": "github:mrzealot/oldjscad",
"fs-extra": "^9.0.1",
"js-yaml": "^3.14.0",
"kle-serial": "github:mrzealot/kle-serial",
"makerjs": "github:mrzealot/maker.js-dist",
"mathjs": "^8.1.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.2",
"@rollup/plugin-replace": "^2.3.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dir-compare": "^3.3.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"rollup": "^2.22.1"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
]
}
}