1
0
ergogen/package.json

39 lines
1.0 KiB
JSON
Raw Normal View History

2020-06-07 04:40:26 -07:00
{
2020-06-16 13:24:46 -07:00
"name": "ergogen",
"version": "0.1.0",
"description": "Ergonomic keyboard layout generator",
2020-06-07 04:40:26 -07:00
"author": "Bán Dénes <mr@zealot.hu>",
"license": "MIT",
2020-06-16 13:24:46 -07:00
"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",
2020-06-26 12:00:10 -07:00
"test": "nyc --reporter=html --reporter=text mocha -r chai/register-should"
2020-06-16 13:24:46 -07:00
},
2020-06-07 04:40:26 -07:00
"dependencies": {
2020-06-16 13:24:46 -07:00
"fs-extra": "^9.0.1",
2020-06-07 04:40:26 -07:00
"js-yaml": "^3.14.0",
2020-06-06 14:07:14 -07:00
"makerjs": "github:mrzealot/maker.js-dist",
2020-06-07 04:40:26 -07:00
"yargs": "^15.3.1"
2020-06-16 13:24:46 -07:00
},
"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,
2020-06-26 12:00:10 -07:00
"include": [
"src/*.js"
],
"exclude": [
"src/cli.js"
]
2020-06-07 04:40:26 -07:00
}
}