Skip to content

Commit 523a54d

Browse files
committed
Added npm support
1 parent 1be2224 commit 523a54d

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.npmignore

Lines changed: 12 additions & 0 deletions
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

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "tweenjs",
3+
"npmName": "tweenjs",
4+
"version": "1.0.0",
5+
"description": "TweenJS is a simple tweening library for use in Javascript. It was developed to integrate well with the EaselJS library, but is not dependent on or specific to it (though it uses the same Ticker and Event classes by default). It supports tweening of both numeric object properties & CSS style properties.",
6+
"main": "tweenjs.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://lannymcnie@github.com/CreateJS/TweenJS.git"
24+
},
25+
"keywords": [
26+
"createjs",
27+
"tweenjs",
28+
"gskinner",
29+
"javascript",
30+
"html5",
31+
"tween",
32+
"motion",
33+
"ease",
34+
"animate"
35+
],
36+
"author": "gskinner.com, inc.",
37+
"license": "MIT",
38+
"bugs": {
39+
"url": "https://github.com/CreateJS/TweenJS/issues"
40+
},
41+
"homepage": "https://createjs.com/tweenjs/"
42+
}

0 commit comments

Comments
 (0)