-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.62 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "pixi-factory",
"author": "Novout",
"license": "MIT",
"version": "1.1.3",
"description": "A superset for creating and handling Pixi.js resources.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"bundle": "lib/index.iife.js",
"types": "lib/index.d.ts",
"contributors": [
"Giovane Cardoso <gcnovout@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/Novout/pixi-factory"
},
"keywords": [
"factory",
"pixi.js",
"graphics",
"rendering",
"webgl"
],
"files": [
"lib",
"package.json"
],
"bugs": {
"url": "https://github.com/Novout/pixi-factory/issues"
},
"homepage": "https://novout.github.io/pixi-controller/",
"scripts": {
"build": "rm -rf ./lib && rollup -c",
"win:build": "rollup -c",
"lint": "eslint src/**/*.{js,ts,tsx} --fix && pretty-quick",
"docs": "rm -rf ./docs && typedoc --options typedoc.json --theme ./node_modules/typedoc-neo-theme/bin/default",
"win:docs": "typedoc --options typedoc.json --theme ./node_modules/typedoc-neo-theme/bin/default",
"test": "jest",
"pub": "npm run build && npm publish",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"@types/gsap": "^1.20.2",
"gsap": "^3.6.0"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/jest": "^26.0.20",
"@types/jsdom": "^16.2.6",
"@types/node": "^14.14.22",
"@types/rollup": "^0.54.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"canvas": "^2.7.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"jest-webgl-canvas-mock": "^0.2.3",
"lint-staged": "^10.5.3",
"pixi.js": "^5.3.8",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^2.38.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.5.3",
"typedoc": "^0.20.29",
"typedoc-neo-theme": "^1.1.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint",
"git add"
]
}
}