forked from pixijs/pixi-compressed-textures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "pixi-compressed-textures",
"version": "1.1.5",
"description": "Advanced features for pixijs textures: compression, better loader",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <ivan.popelyshev@gmail.com>",
"Chad Engler <chad@pantherdev.com>"
],
"main": "./src/index.js",
"homepage": "https://github.com/pixijs/pixi-compressed-textures",
"bugs": {
"url": "https://github.com/pixijs/pixi-compressed-textures/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi-compressed-textures.git"
},
"keywords": [
"pixi",
"2d",
"render"
],
"scripts": {
"clean": "rimraf bin && mkdirp bin",
"prestart": "npm run clean",
"start": "parallelshell \"npm run watch:lint\" \"npm run watch\"",
"watch": "pixify -o pixi-compressed-textures -w",
"watch:lint": "watch \"jshint --reporter=scripts/reporter.js scripts src test || exit 0\" src",
"lint": "jshint --reporter=scripts/reporter.js scripts src",
"prebuild": "npm run lint && npm run clean",
"build": "pixify -o pixi-compressed-textures",
"docs": "jsdoc -c scripts/jsdoc.conf.json -R README.md"
},
"files": [
"bin/",
"lib/",
"src/",
"CONTRIBUTING.md",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"glslify": "^5.0.2"
},
"devDependencies": {
"browserify-versionify": "^1.0.6",
"del": "^2.2.0",
"jaguarjs-jsdoc": "^1.0.1",
"jsdoc": "^3.4.0",
"jshint": "^2.9.2",
"jshint-stylish": "^2.2.0",
"jshint-stylish-summary": "^0.1.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"parallelshell": "^2.0.0",
"pixify": "^1.4.0",
"rimraf": "^2.5.3",
"watch": "^0.19.1"
},
"browserify": {
"transform": [
"glslify",
"browserify-versionify"
]
}
}