-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.25 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
{
"name": "monsterid",
"version": "1.0.1",
"description": "Node.js version of monsterId library by Andreas Gohr",
"main": "./dist/index.js",
"author": {
"name": "Gabriele D'Arrigo",
"email": "[email protected]",
"url": "https://github.com/gabrieledarrigo"
},
"scripts": {
"build": "babel -d dist/ src/",
"lint": "eslint .",
"prepublish": "npm run build",
"test": "jest"
},
"keywords": [
"es6",
"es2015",
"monsterid",
"avatar",
"image"
],
"repository": {
"type": "git",
"url": "http://github.com/gabrieledarrigo/monsterid.git"
},
"license": "MIT",
"dependencies": {
"node-gd": "^2.1.1",
"seed-random": "2.2.0"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"babel-jest": "26.6.3",
"eslint": "7.16.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.6",
"jest": "26.6.3",
"jest-expect-message": "1.0.2",
"lint-staged": "10.5.3"
},
"jest": {
"setupFilesAfterEnv": [
"jest-expect-message"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}