diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..41a9ccc6 --- /dev/null +++ b/.npmignore @@ -0,0 +1,14 @@ +_assets +build +bower.json +dev +docs +examples +extras +icon.png +lib/**-NEXT**.js +spikes +src +tests +tutorials +VERSIONS.txt \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 00000000..b683f676 --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "name": "soundjs", + "npmName": "soundjs", + "version": "1.0.0", + "description": "A JavaScript library that provides a simple API, and powerful features to make working with audio a breeze. Easily ties in audio file loading to PreloadJS.", + "main": "soundjs.js", + "directories": { + "doc": "docs", + "example": "examples", + "lib": "lib", + "test": "tests" + }, + "npmFileMap": [ + { + "basePath": "lib", + "files": [ + "**/*" + ] + } + ], + "repository": { + "type": "git", + "url": "git+https://github.com/CreateJS/SoundJS.git" + }, + "keywords": [ + "createjs", + "soundjs", + "gskinner", + "javascript", + "audio", + "webaudio", + "html5", + "flash" + ], + "author": "gskinner.com, inc.", + "license": "MIT", + "bugs": { + "url": "https://github.com/CreateJS/SoundJS/issues" + }, + "homepage": "https://createjs.com/soundjs/" +}