forked from pixijs/pixi-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "pixi-ui",
"version": "1.0.0",
"description": "Pixi.js User Interface",
"author": "Nicolai Mortensen",
"contributors": [
"Nicolai Mortensen <[email protected]>"
],
"main": "./src/index.js",
"homepage": "http://www.pixijs.com/",
"bugs": "https://github.com/pixijs/pixi-ui/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi-ui.git"
},
"scripts": {
"clean": "rimraf bin && mkdirp bin",
"prestart": "npm run clean",
"start": "parallelshell \"npm run watch:lint\" \"npm run watch\"",
"watch": "pixify -o pixi-ui -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-ui",
"docs": "jsdoc -c scripts/jsdoc.conf.json -R README.md"
},
"files": [
"bin/",
"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",
"emoji-regex": "6.4.2"
},
"browserify": {
"transform": [
"glslify",
"browserify-versionify"
]
}
}