-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
74 lines (74 loc) · 1.84 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
{
"name": "avatar-generator",
"version": "2.0.0",
"main": "lib/index.js",
"description": "8bit avatar generator. Inspired by https://github.com/matveyco/8biticon",
"homepage": "https://github.com/arusanov/avatar-generator",
"bugs": "https://github.com/arusanov/avatar-generator/issues",
"author": {
"name": "arusanov"
},
"repository": {
"type": "git",
"url": "https://github.com/arusanov/avatar-generator"
},
"license": "MIT",
"typings": "./lib/index.d.ts",
"keywords": [
"avatar",
"8bit",
"old school"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@types/seedrandom": "^2.4.28",
"@types/sharp": "^0.25.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mocha": "^7.1.2",
"prettier": "^2.0.5",
"semantic-release": "^17.0.7",
"travis-deploy-once": "^5.0.11",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"dependencies": {
"commander": "^5.1.0",
"seedrandom": "^3.0.5",
"sharp": "^0.25.2"
},
"engines": {
"node": ">=8.0",
"npm": ">=6.0"
},
"bin": {
"avatar-generator": "./cli.js"
},
"scripts": {
"commit": "npx git-cz",
"build": "tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"precommit": "npm run build",
"prepush": "npm test",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "npm run build && semantic-release"
},
"lint-staged": {
"src/*.ts": [
"prettier --single-quote --no-semi --trailing-comma es5 --write",
"git add"
]
},
"preferGlobal": false,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}