piskel/package.json

78 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2013-05-27 01:58:59 +04:00
{
"name": "piskel",
"version": "0.15.2-SNAPSHOT",
2016-06-04 11:43:22 +03:00
"description": "Pixel art editor",
"author": "Julian Descottes <julian.descottes@gmail.com>",
"contributors": [
"Vincent Renaudin"
],
"homepage": "http://github.com/piskelapp/piskel",
2016-06-04 11:43:22 +03:00
"license": "Apache-2.0",
2013-05-27 01:58:59 +04:00
"repository": {
"type": "git",
"url": "http://github.com/piskelapp/piskel.git"
2013-05-27 01:58:59 +04:00
},
Prepare for npm publishing Introduces some small package changes that simplify publishing Piskel to NPM as a ready-to-use application. Since Piskel is not simply a JavaScript "module" (not something one would 'require' into another application) its role as a package on npm is somewhat unconventional - it contains the release build of Piskel, ready to serve as a static website, and a small `piskel-root` utility that will print the absolute path to that content (which will have been installed who-knows-where by npm). Mostly this works by adding the "files" and "bin" entries to package.json, and by adding an .npmignore file (which simply prevents npm from using your .gitignore and ignoring the built files that we want to ship). With these settings in place you could publish to npm anytime (as long as you have permission) but I've added `preversion` and `postversion` scripts to simplify and automate the process. Here's how you publish a release: ``` npm login # If not already logged in npm version [major|minor|patch|<other>] # see `npm help version` for more options ``` By itself this will lint, run the full test suite, do a release build, make sure the working directory is clean, bump the version number in package.json, commit the version number change and add a git tag with the new version, push the new version to GitHub and publish the release build output to npm. If you don't have an npm account, create one at npmjs.com. You'll need to do the initial release. An npm user should then be able to download the latest Piskel release by running `npm install piskel`. They could then find the location of Piskel's index.html by running `` `npm bin`/piskel-root `` (perhaps more useful for automation purposes... our own build copies the built Piskel release from its npm-installed location to a directory where it gets served by Rails). By itself this may not seem _that_ useful, but it's a step toward making Piskel easier to embed with other appilications. I've got a start on the next big improvement, where a parent application can `require('piskel')` to get an API object that facilitates communication with the editor running within an iframe. You can see an early version of that at https://github.com/code-dot-org/piskel/pull/7
2016-06-18 03:07:03 +03:00
"files": [
"dest/prod",
"misc/scripts/piskel-root"
],
"bin": {
"piskel-root": "./misc/scripts/piskel-root",
"piskel-cli": "./cli/index.js"
Prepare for npm publishing Introduces some small package changes that simplify publishing Piskel to NPM as a ready-to-use application. Since Piskel is not simply a JavaScript "module" (not something one would 'require' into another application) its role as a package on npm is somewhat unconventional - it contains the release build of Piskel, ready to serve as a static website, and a small `piskel-root` utility that will print the absolute path to that content (which will have been installed who-knows-where by npm). Mostly this works by adding the "files" and "bin" entries to package.json, and by adding an .npmignore file (which simply prevents npm from using your .gitignore and ignoring the built files that we want to ship). With these settings in place you could publish to npm anytime (as long as you have permission) but I've added `preversion` and `postversion` scripts to simplify and automate the process. Here's how you publish a release: ``` npm login # If not already logged in npm version [major|minor|patch|<other>] # see `npm help version` for more options ``` By itself this will lint, run the full test suite, do a release build, make sure the working directory is clean, bump the version number in package.json, commit the version number change and add a git tag with the new version, push the new version to GitHub and publish the release build output to npm. If you don't have an npm account, create one at npmjs.com. You'll need to do the initial release. An npm user should then be able to download the latest Piskel release by running `npm install piskel`. They could then find the location of Piskel's index.html by running `` `npm bin`/piskel-root `` (perhaps more useful for automation purposes... our own build copies the built Piskel release from its npm-installed location to a directory where it gets served by Rails). By itself this may not seem _that_ useful, but it's a step toward making Piskel easier to embed with other appilications. I've got a start on the next big improvement, where a parent application can `require('piskel')` to get an API object that facilitates communication with the editor running within an iframe. You can see an early version of that at https://github.com/code-dot-org/piskel/pull/7
2016-06-18 03:07:03 +03:00
},
"main": "./dest/prod/index.html",
2013-05-27 01:58:59 +04:00
"scripts": {
"test": "grunt test",
2020-01-28 16:51:54 +03:00
"dev": "grunt play",
2019-11-11 23:44:49 +03:00
"start": "grunt build && nw",
"preversion": "grunt test build",
"postversion": "git push && git push --tags && npm publish",
2019-11-11 21:36:02 +03:00
"release": "grunt && node ./bin/copy-to-piskel-website",
"build": "grunt desktop",
2019-11-16 18:38:02 +03:00
"build:mac": "grunt desktop-mac",
"format": "grunt eslint --fix"
2013-05-27 01:58:59 +04:00
},
"devDependencies": {
2021-07-02 16:07:37 +03:00
"dateformat": "4.5.1",
"fs-extra": "10.0.0",
"grunt": "1.4.1",
2016-08-31 15:11:29 +03:00
"grunt-casperjs": "^2.2.1",
2021-07-02 16:07:37 +03:00
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "2.0.0",
2016-04-21 23:37:53 +03:00
"grunt-contrib-concat": "1.0.1",
2021-07-02 16:07:37 +03:00
"grunt-contrib-connect": "3.0.0",
"grunt-contrib-copy": "1.0.0",
2021-07-02 16:07:37 +03:00
"grunt-contrib-jshint": "3.0.0",
"grunt-contrib-uglify": "5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "23.0.0",
"grunt-include-replace": "5.0.0",
"grunt-jscs": "3.0.1",
"grunt-karma": "4.0.2",
"grunt-leading-indent": "0.2.0",
"grunt-nw-builder": "3.1.0",
2021-07-02 16:07:37 +03:00
"grunt-replace": "2.0.2",
"grunt-spritesmith": "^6.9.0",
"jasmine-core": "3.8.0",
"karma": "6.3.4",
"karma-jasmine": "4.0.1",
"karma-phantomjs-launcher": "1.0.4",
2021-07-02 16:07:37 +03:00
"load-grunt-tasks": "5.1.0",
"nw": "0.54.0",
2016-08-31 18:25:20 +03:00
"phantomjs": "2.1.7",
"phantomjs-polyfill-object-assign": "0.0.2",
2021-07-02 16:07:37 +03:00
"promise-polyfill": "8.2.0",
2017-01-15 16:07:04 +03:00
"rmdir": "1.2.0"
},
"window": {
2014-06-22 00:39:37 +04:00
"title": "Piskel",
"icon": "dest/prod/logo.png",
2014-06-22 00:39:37 +04:00
"toolbar": false,
"width": 1000,
"height": 700
},
"dependencies": {
2021-07-02 16:07:37 +03:00
"minimist": "^1.2.5"
2013-05-27 01:58:59 +04:00
}
2013-05-28 01:42:16 +04:00
}