forked from bigtimebuddy/pixi-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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-svg",
"version": "1.0.1",
"description": "SVG to Graphics DisplayObject for PIXI",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run build",
"lint": "eslint src",
"build": "npm run dist && npm run lib",
"predist": "rimraf dist/*",
"dist": "pixify -d dist -o \"pixi-svg\" -t babelify",
"prelib": "rimraf lib/*",
"lib": "babel src --out-dir lib -s",
"watch": "npm run dist -- --watch",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"postversion": "npm test",
"postpublish": "git push && git push --tags && npm run deploy",
"deploy": "gh-pages -d . -s \"{dist,example}/*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigtimebuddy/pixi-svg.git"
},
"keywords": [
"svg",
"pixi.js",
"graphics",
"rendering",
"webgl"
],
"files": [
"dist/*",
"lib/*",
"README.md",
"LICENSE"
],
"readme": "README.md",
"author": "Matt Karl <matt@mattkarl.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bigtimebuddy/pixi-svg/issues"
},
"homepage": "https://github.com/bigtimebuddy/pixi-svg#readme",
"dependencies": {
"d-path-parser": "^1.0.0"
},
"peerDependencies": {
"pixi.js": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"eslint": "^3.19.0",
"gh-pages": "^0.12.0",
"pixify": "^1.9.0",
"rimraf": "^2.6.1"
}
}