WFA-JS/package.json

21 lines
573 B
JSON
Raw Permalink Normal View History

2024-03-25 21:29:30 +00:00
{
"name": "wfa-js",
2024-08-06 17:45:39 +00:00
"version": "1.0.0",
2024-03-25 21:29:30 +00:00
"description": "Wavefront alignment algorithm in JS",
"main": "tests/test.js",
2024-03-25 21:29:30 +00:00
"type": "module",
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
2024-05-28 19:40:16 +00:00
"eslint-plugin-promise": "^6.1.1",
"progress": "^2.0.3"
2024-03-25 21:29:30 +00:00
},
"scripts": {
"test": "node tests/test.js",
2024-07-29 20:12:35 +00:00
"lint": "DEBUG=eslint:cli-engine eslint --fix src/*.js tests/*.js",
"minify": "sed -ze 's/\\t//g; s/\\/\\/[[:print:]]*//g;s/\\n//g;' src/wfa.js > dist/wfa.js"
2024-03-25 21:29:30 +00:00
}
2024-05-28 19:40:16 +00:00
}