-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "identicons-svg",
"version": "0.0.1",
"description": "Gernerate SVG identicons.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Lukas Wagner",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest --coverage --color",
"test:watch": "jest --coverage --color --watch",
"lint": "eslint .",
"rm-dist": "rimraf ./dist",
"build:ts": "tsc -d",
"build": "yarn-s rm-dist build:ts",
"prepare": "yarn-s lint test build"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/jest": "^26.0.15",
"@types/md5": "^2.2.1",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"color": "^3.1.3",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"yarn-s": "^1.2.3"
},
"dependencies": {
"color": "^3.1.3",
"md5": "^2.3.0"
}
}