-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "shipit.gifs",
"version": "1.0.24",
"description": "GIFs data for https://shipit.today",
"main": "gifs.json",
"files": [
"gifs.json"
],
"scripts": {
"build": "yarn test && yarn build:cache",
"build:cache": "node cache.js",
"test": "./node_modules/.bin/jest",
"add:gif": "node add-gif.js",
"gh:pr": "yarn test && node scripts/pull-request.js",
"test:watch": "yarn test --watch",
"prepare": "husky install",
"prettier:write": "./node_modules/.bin/prettier --write '*.{js,json,md}'"
},
"lint-staged": {
"*.{js,json,md}": [
"yarn prettier:write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/seantomburke/shipit.gifs.git"
},
"keywords": [
"shipit",
"lgtm",
"gifs"
],
"author": "Sean Burke <@seantomburke>",
"license": "ISC",
"bugs": {
"url": "https://github.com/seantomburke/shipit.gifs/issues"
},
"homepage": "https://github.com/seantomburke/shipit.gifs#readme",
"devDependencies": {
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.6.2",
"probe-image-size": "^7.2.3"
},
"volta": {
"node": "16.14.2",
"yarn": "1.22.19"
}
}