First working example with browserify
parents
Showing
.gitignore
0 → 100644
dist/psd.js
0 → 100644
index.js
0 → 100644
lib/psd.coffee
0 → 100644
lib/psd/file.coffee
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "psd", | ||
| "version": "0.0.1", | ||
| "dependencies": { | ||
| "coffee-script": "~ 1.7.1" | ||
| }, | ||
| "devDependencies": { | ||
| "coffeeify": "~ 0.6.0" | ||
| }, | ||
| "browserify": { | ||
| "transform": ["coffeeify"] | ||
| }, | ||
| "scripts": { | ||
| "compile": "browserify ./lib/psd.coffee > ./dist/psd.js" | ||
| } | ||
| } | ||
| \ No newline at end of file |
Please register or sign in to comment