33 lines
812 B
JSON
33 lines
812 B
JSON
{
|
|
"name": "v2f",
|
|
"version": "1.2.1",
|
|
"description": "Turn a video into strips of precise 16mm-size stills",
|
|
"main": "v2f.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "node build.js",
|
|
"compile": "./node_modules/.bin/tsc ./src/v2f.ts --outFile ./v2f.js --noImplicitAny --lib ES2017 --lib ES2016 -t ES2016",
|
|
"docs": "./node_modules/.bin/jsdoc2md ./v2f.js > ./docs/Readme.md"
|
|
},
|
|
"author": "mmcwilliams",
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
"async": "^2.6.2",
|
|
"commander": "^2.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^11.13.4",
|
|
"fs-extra": "^8.1.0",
|
|
"jsdoc-to-markdown": "^4.0.1",
|
|
"pkg": "^4.4.0",
|
|
"typescript": "^3.4.3"
|
|
},
|
|
"pkg": {
|
|
"scripts": [
|
|
"./v2f.js",
|
|
"./package.json"
|
|
]
|
|
}
|
|
}
|