-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "sprite.js",
"title": "Sprite",
"description": "Sprite is a small JavaScript library for simple but powerful sprite based animations.",
"version": "0.0.2",
"main": "dist/sprite.js",
"homepage": "https://github.com/adriancmiranda/sprite.js",
"dependencies": {},
"devDependencies": {
"gulp": "~3.6.0",
"gulp-load-plugins": "~0.5.0",
"gulp-bump": "~0.1.7",
"gulp-clean": "~0.2.4",
"gulp-git": "~0.4.0",
"gulp-header": "~1.0.2",
"gulp-jshint": "~1.5.3",
"gulp-mocha": "~0.4.1",
"gulp-size": "~0.3.0",
"gulp-uglify": "~0.2.1",
"gulp-plumber": "~0.6.1",
"gulp-jscs": "~0.4.1",
"gulp-rename": "~1.2.0",
"gulp-jsonlint": "0.0.3",
"gulp-concat": "~2.2.0",
"gulp-remove-use-strict": "~0.0.2",
"gulp-notify": "~1.2.5"
},
"author": {
"name": "Adrian C. Miranda",
"email": "[email protected]",
"url": "https://github.com/adriancmiranda"
},
"keywords": [
"sprite",
"spritesheet",
"animation",
"javascript",
"library"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adriancmiranda/sprite.js.git"
},
"bugs": {
"url": "https://github.com/adriancmiranda/sprite.js/issues"
},
"engines": {
"node": ">=0.10.22"
},
"scripts": {
"build": "npm install && gulp",
"start": "gulp watch",
"test": "gulp test"
}
}