-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "animal-avatar-generator",
"version": "1.2.0",
"private": false,
"description": "Animal avatar generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"avatar",
"generator",
"typescript",
"javascript"
],
"scripts": {
"start": "cd example && webpack-dev-server",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch-all --coverage",
"lint": "eslint ./src --ext=ts"
},
"files": [
"dist/**/*"
],
"type": "module",
"author": {
"name": "Roman Lukashik",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/roma-lukashik/animal-avatar-generator.git"
},
"license": "MIT",
"homepage": "https://github.com/roma-lukashik/animal-avatar-generator",
"devDependencies": {
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.23.4",
"html-webpack-plugin": "^4.5.1",
"jest": "^29.2.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.8.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "4.3.1"
}
}