Skip to content

Commit 39e3246

Browse files
committed
Added NPM support
1 parent c1a3f66 commit 39e3246

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

.npmignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
_assets
2+
build
3+
bower.json
4+
dev
5+
docs
6+
examples
7+
extras
8+
icon.png
9+
lib/**-NEXT**.js
10+
spikes
11+
src
12+
tests
13+
tutorials
14+
VERSIONS.txt

package.json

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "soundjs",
3+
"npmName": "soundjs",
4+
"version": "1.0.0",
5+
"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.",
6+
"main": "soundjs.js",
7+
"directories": {
8+
"doc": "docs",
9+
"example": "examples",
10+
"lib": "lib",
11+
"test": "tests"
12+
},
13+
"npmFileMap": [
14+
{
15+
"basePath": "lib",
16+
"files": [
17+
"**/*"
18+
]
19+
}
20+
],
21+
"repository": {
22+
"type": "git",
23+
"url": "git+https://github.com/CreateJS/SoundJS.git"
24+
},
25+
"keywords": [
26+
"createjs",
27+
"soundjs",
28+
"gskinner",
29+
"javascript",
30+
"audio",
31+
"webaudio",
32+
"html5",
33+
"flash"
34+
],
35+
"author": "gskinner.com, inc.",
36+
"license": "MIT",
37+
"bugs": {
38+
"url": "https://github.com/CreateJS/SoundJS/issues"
39+
},
40+
"homepage": "https://createjs.com/soundjs/"
41+
}

0 commit comments

Comments
 (0)