1
0
ergogen/package.json
2020-06-16 22:24:46 +02:00

35 lines
948 B
JSON

{
"name": "ergogen",
"version": "0.1.0",
"description": "Ergonomic keyboard layout generator",
"author": "Bán Dénes <mr@zealot.hu>",
"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": "nyc mocha -r chai/register-should"
},
"dependencies": {
"fs-extra": "^9.0.1",
"js-yaml": "^3.14.0",
"makerjs": "github:mrzealot/maker.js-dist",
"yargs": "^15.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"rollup": "^2.16.1"
},
"nyc": {
"all": true,
"include": ["src/*.js"],
"exclude": ["src/cli.js"]
}
}