-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 854 Bytes
/
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
{
"name": "philately",
"version": "0.4.0",
"description": "A rendering engine for HTML5 canvas with layer support.",
"main": "dist/index.js",
"author": "Henrique Müller <hbmuller@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hbmuller/philately.git"
},
"keywords": [
"html5",
"canvas",
"animation",
"layers",
"engine",
"renderer"
],
"scripts": {
"clean": "rimraf dist **/*.tsbuildinfo",
"build": "yarn clean && tsc",
"lint": "eslint src --fix"
},
"devDependencies": {
"@types/lodash": "4.14.191",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"eslint": "8.33.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.3",
"rimraf": "4.1.2",
"typescript": "4.9.5"
}
}