Skip to content

Commit 2041ed2

Browse files
committed
Added NPM support
1 parent f6aed54 commit 2041ed2

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.npmignore

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

package.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "preloadjs",
3+
"npmName": "preloadjs",
4+
"version": "1.0.0",
5+
"description": "PreloadJS makes it easy to preload your assets: images, sounds, JavaScript, fonts, JSON, and text data",
6+
"main": "preloadjs.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/PreloadJS.git"
24+
},
25+
"keywords": [
26+
"createjs",
27+
"preloadjs",
28+
"gskinner",
29+
"preload",
30+
"preloading",
31+
"progress",
32+
"XHR",
33+
"javascript",
34+
"html5"
35+
],
36+
"author": "gskinner.com, inc.",
37+
"license": "MIT",
38+
"bugs": {
39+
"url": "https://github.com/CreateJS/PreloadJS/issues"
40+
},
41+
"homepage": "https://createjs.com/preloadjs/"
42+
}

0 commit comments

Comments
 (0)