-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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": "pixi-timeout",
"version": "1.0.4",
"description": "Pixi.js plugin. A setTimeout replacement using PIXI.Ticker",
"main": "lib/pixi-timeout.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run build && npm test",
"lib": "npm run build && npm run min",
"build": "babel index.js -o ./lib/pixi-timeout.js -s inline",
"min": "minify index.js -o ./lib/pixi-timeout.min.js",
"test": "npm run unit && npm run lint",
"unit": "mocha",
"lint": "eslint index.js --fix",
"prepublishOnly": "npm run lib && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brenwell/pixi-timeout.git"
},
"keywords": [
"pixi",
"pixi.js",
"ticker",
"requestAnimationFrame",
"setTimeout",
"plugin"
],
"author": "Brendon Blackwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/brenwell/pixi-timeout/issues"
},
"homepage": "https://github.com/brenwell/pixi-timeout#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.35",
"@babel/core": "^7.0.0-beta.35",
"@babel/preset-env": "^7.0.0-beta.35",
"babel-minify": "^0.2.0",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"jsdom": "11.5.1",
"jsdom-global": "3.0.2",
"mocha": "^4.0.1",
"pixi.js": "^4.6.2",
"sinon": "^4.1.3"
}
}