-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.05 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
{
"name": "torrent-gql",
"version": "0.0.1",
"private": true,
"main": "index.js",
"description": "Torrent search GraphQL api",
"author": "Ricardo Casares",
"license": "MIT",
"repository": "github:ricardocasares/torrent-gql",
"bin": {
"torrent-gql": "bin.js"
},
"files": [
"bin.js",
"index.js",
"schema.js"
],
"scripts": {
"format": "npx prettier --write **/*.{js,md,yml,json}"
},
"dependencies": {
"cors": "^2.8.5",
"express-graphql": "^0.7.1",
"graphql": "^14.0.2",
"polka": "^0.5.1",
"torrent-search-api": "^2.1.4"
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^12.0.2"
},
"keywords": [
"api",
"graphql",
"torrent",
"torrents"
],
"release": {
"plugins": [
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/release-notes-generator"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,yml,json}": [
"npm run format",
"git add"
]
}
}