33 lines
879 B
JSON
33 lines
879 B
JSON
{
|
|
"name": "dct",
|
|
"version": "0.1.0",
|
|
"description": "Node.js implementation of the Discrete Cosine Transform (version 2 for now).",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/vail-systems/node-dct",
|
|
"repository": "vail-systems/node-dct",
|
|
"contributors": [
|
|
"Joshua Jung <joshua.p.jung@gmail.com> (http://www.joshjung.com)",
|
|
"Ben Bryan <bbryan@vailsys.com>"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"release:major": "npm version major && git push --follow-tags && npm publish",
|
|
"release:minor": "npm version minor && git push --follow-tags && npm publish",
|
|
"release:patch": "npm version patch && git push --follow-tags && npm publish"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.12.0"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
"dct.js",
|
|
"src",
|
|
"test"
|
|
],
|
|
"keywords": [
|
|
"dct",
|
|
"discrete cosine transform"
|
|
]
|
|
}
|