-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "pixi-after-effects",
"version": "1.0.4",
"description": "play AfterEffects animation by pixi.js",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode production",
"server": "webpack-dev-server --host 0.0.0.0 --progress --port 5000 --mode development",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"doc": "jsdoc -c .jsdoc.json -R README.md"
},
"files": [
"README.md",
"LICENSE",
"package.json",
"dist/pixi-ae.js",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/blastrain/pixi-after-effects"
},
"bugs": {
"url": "https://github.com/blastrain/pixi-after-effects/issues"
},
"types": "src",
"homepage": "https://github.com/blastrain/pixi-after-effects",
"author": "",
"license": "MIT",
"dependencies": {
"bezier-easing": "^2.0.3",
"pixi.js": "^5.0.4"
},
"devDependencies": {
"@pixi/jsdoc-template": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"copy-webpack-plugin": "^5.0.3",
"dat.gui": "^0.7.6",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"jsdoc": "^3.6.2",
"prettier": "^1.18.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}