frameloom/package.json

36 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2018-12-08 00:10:34 +00:00
{
"name": "frameloom",
"version": "1.0.3",
2018-12-08 00:10:34 +00:00
"description": "Node script to generate flicker videos by interweaving frames from multiple videos",
"main": "frameloom",
2018-12-08 00:10:34 +00:00
"scripts": {
2019-01-04 03:37:23 +00:00
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm --no-git-tag-version version patch",
"compile": "./node_modules/.bin/tsc src/frameloom.ts --outFile ./frameloom --noImplicitAny --lib ES2017 -t ES2017 --moduleResolution Node",
"build": "node build.js",
"docs": "sh ./scripts/docs.sh",
"examples": "sh ./scripts/examples.sh",
"examples:youtube": "sh ./scripts/examples_youtube.sh",
"examples:assemble": "sh ./scripts/examples_assemble.sh"
2018-12-08 00:10:34 +00:00
},
"author": "sixteenmillimeter",
"license": "MIT",
"dependencies": {
2021-03-26 21:00:17 +00:00
"commander": "^7.2.0",
"fs-extra": "^9.1.0"
},
"devDependencies": {
2021-03-26 21:00:17 +00:00
"@types/node": "^14.14.36",
"jsdoc-to-markdown": "^7.0.1",
"pkg": "^4.5.1",
"qunit": "^2.14.1",
"typescript": "^4.2.3"
2019-04-16 00:08:36 +00:00
},
"pkg": {
"scripts": [
"./frameloom",
"./lib/**/*"
]
2018-12-08 00:10:34 +00:00
}
}