This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "pixi-gl-core",
"version": "1.1.4",
"description": "A set of tidy little pixi objects that make working with WebGL simpler",
"main": "./src/index.js",
"scripts": {
"clean": "rimraf bin && mkdirp bin",
"prestart": "npm run clean",
"start": "parallelshell \"npm run watch:debug\" \"npm run watch:release\"",
"watch:debug": "watchify src/index.js -s PIXI -o bin/pixi.js -dv",
"watch:release": "watchify src/index.js -s PIXI -o bin/pixi.min.js -dv",
"test": "npm run build",
"lint": "jshint --reporter=scripts/reporter.js scripts src",
"prebuild": "npm run lint && npm run clean",
"build": "pixify --name pixi-gl-core",
"docs": "jsdoc -c scripts/jsdoc.conf.json -R README.md",
"predeploy": "npm run docs",
"deploy": "gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/pixi-gl-core.git"
},
"keywords": [
"Pixi",
"WebGL",
"Shader"
],
"author": "Mathew Groves (@Doormat23)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixijs/pixi-gl-core/issues"
},
"homepage": "https://github.com/pixijs/pixi-gl-core#readme",
"devDependencies": {
"browserify-versionify": "^1.0.6",
"chai": "^3.5.0",
"del": "^2.2.0",
"gh-pages": "^0.11.0",
"jaguarjs-jsdoc": "^1.0.0",
"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",
"mocha": "^2.5.3",
"parallelshell": "^2.0.0",
"pixify": "^1.2.1",
"rimraf": "^2.5.3",
"testem": "^1.8.1",
"watchify": "^3.7.0"
}
}