-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.9 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
{
"name": "sprite-reader",
"version": "0.1.6",
"description": "Little TexturePacker animation engine. It allows you to play in a canvas your TexturePacker JSON export (array typed).",
"author": "Arthur Muchir <arthur.muchir@gmail.com>",
"license": "MIT",
"main": "dist/sprite-reader.js",
"scripts": {
"clean": "rm -rf dist",
"watch": "npm run clean && parallelshell 'npm run watch:lint' 'npm run watch:js'",
"watch:lint": "esw -w src",
"watch:js": "mkdir -p dist && watchify src/SpriteReader.js -vd -t browserify-shim -t [ babelify --presets [ es2015 ] ] -t brfs -s SpriteReader -o dist/sprite-reader.js",
"build": "npm run build:lint && npm run clean && npm run build:js && npm run build:uglify",
"build:lint": "esw src",
"build:js": "mkdir dist && browserify src/SpriteReader.js -d -t browserify-shim -t [ babelify --presets [ es2015 ] ] -t brfs -t [ uglifyify -x .js ] -s SpriteReader | exorcist dist/sprite-reader.js.map > dist/sprite-reader.js",
"build:uglify": "uglifyjs -cm --in-source-map dist/sprite-reader.js.map --source-map dist/sprite-reader.js.map --source-map-url sprite-reader.js.map -o dist/sprite-reader.js dist/sprite-reader.js"
},
"repository": {
"type": "git",
"url": "https://github.com/arthurmuchir/sprite-reader"
},
"bugs": {
"url": "https://github.com/arthurmuchir/sprite-reader/issues"
},
"keywords": [
"TexturePacker",
"Texture Packer",
"Sprite",
"Spritesheet",
"Animation",
"Canvas",
"MovieClip"
],
"browserify-shim": {},
"devDependencies": {
"babel-preset-es2015": "6.16.0",
"babelify": "7.3.0",
"brfs": "1.4.3",
"browserify": "13.1.0",
"browserify-shim": "3.8.12",
"eslint": "3.7.1",
"eslint-watch": "2.1.14",
"exorcist": "0.4.0",
"parallelshell": "2.0.0",
"tape": "4.6.2",
"uglify": "0.1.5",
"uglifyify": "3.0.3",
"watchify": "3.7.0"
},
"dependencies": {}
}