forked from vail-systems/node-dct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 879 Bytes
/
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
{
"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 <[email protected]> (http://www.joshjung.com)",
"Ben Bryan <[email protected]>"
],
"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"
]
}