Increment patch to 1.0.2 following rewrite. API remains stable and features need to be added to get to 1.1.x
This commit is contained in:
parent
3f1016d915
commit
e8c949daea
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "frameloom",
|
"name": "frameloom",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -2027,7 +2027,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minimist": {
|
"minimist": {
|
||||||
"version": "0.0.10",
|
"version": "0.0.10",
|
||||||
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
|
"resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
|
||||||
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=",
|
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
|
12
package.json
12
package.json
|
@ -1,17 +1,17 @@
|
||||||
{
|
{
|
||||||
"name": "frameloom",
|
"name": "frameloom",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"description": "Node script to generate flicker videos by interweaving frames from multiple videos",
|
"description": "Node script to generate flicker videos by interweaving frames from multiple videos",
|
||||||
"main": "frameloom",
|
"main": "frameloom",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"version": "npm --no-git-tag-version version patch",
|
"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",
|
"compile": "./node_modules/.bin/tsc src/frameloom.ts --outFile ./frameloom --noImplicitAny --lib ES2017 -t ES2017 --moduleResolution Node",
|
||||||
"build" : "node build.js",
|
"build": "node build.js",
|
||||||
"docs": "sh ./scripts/docs.sh",
|
"docs": "sh ./scripts/docs.sh",
|
||||||
"examples" : "sh ./scripts/examples.sh",
|
"examples": "sh ./scripts/examples.sh",
|
||||||
"examples:youtube" : "sh ./scripts/examples_youtube.sh",
|
"examples:youtube": "sh ./scripts/examples_youtube.sh",
|
||||||
"examples:assemble" : "sh ./scripts/examples_assemble.sh"
|
"examples:assemble": "sh ./scripts/examples_assemble.sh"
|
||||||
},
|
},
|
||||||
"author": "sixteenmillimeter",
|
"author": "sixteenmillimeter",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
Loading…
Reference in New Issue