forked from Nazariglez/pixi-tween
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 loc) · 1.97 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
{
"name": "pixi-tween",
"version": "1.0.0",
"description": "pixi-tween is a tween plugin for Pixi.js v4.1.0 or higher",
"author": "Dave Moore <themoonrat@gmail.com>",
"contributors": [
"Nazariglez <nazari.nz@gmail.com> (http://www.nazariglez.com)"
],
"main": "bin/pixi-tween.min.js",
"module": "bin/pixi-tween.es.min.js",
"types": "./pixi-tween.d.ts",
"homepage": "https://github.com/themoonrat/pixi-tween",
"bugs": "https://github.com/themoonrat/pixi-tween/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/themoonrat/pixi-tween.git"
},
"keywords": [
"pixi",
"tween",
"tweenmanager",
"animation"
],
"scripts": {
"predeploy": "npm run docs",
"test": "npm run build",
"docs": "jsdoc -c scripts/jsdoc.conf.json -R README.md",
"clean": "rimraf bin && mkdirp bin",
"lint": "eslint src scripts --fix",
"watch:lint": "watch \"npm run lint\" src scripts",
"examples": "npm run build && electron examples/index.html",
"prestart": "npm run clean",
"start": "parallelshell \"npm run watch:all\" \"npm run watch:lint\"",
"prebuild": "npm run clean && npm run lint",
"build": "npm run build:all",
"watch:all": "rollup -c -w",
"build:all": "rollup -c && rollup -c --environment BUILD:prod",
"build:all:es": "rollup -c --environment FORMAT:es && rollup -c --environment BUILD:prod,FORMAT:es"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"electron": "^7.1.2",
"eslint": "^6.6.0",
"gh-pages": "^2.1.1",
"jaguarjs-jsdoc": "^1.1.0",
"jsdoc": "^3.6.3",
"mkdirp": "^0.5.1",
"parallelshell": "^3.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.27.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"rollup-watch": "^4.3.1",
"uglify-es": "^3.3.9",
"watch": "^1.0.2"
},
"files": [
"bin",
"pixi-tween.d.ts"
]
}