-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "typed-graphqlify",
"version": "3.1.6",
"description": "Build Typed GraphQL Queries in TypeScript. A better TypeScript + GraphQL experience.",
"keywords": [
"graphql",
"typescript",
"utility"
],
"repository": "git@github.com:acro5piano/typed-graphqlify",
"author": "gosho-kazuya <ketsume0211@gmail.com>",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"jsnext:main": "dist/index.es.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "simple-git-hooks || true",
"build": "rollup -c",
"clean": "rimraf dist",
"dist": "npm-run-all clean build",
"format": "prettier --write src/*.ts src/**/*.ts README.md",
"lint": "tslint --fix src/*.ts src/**/*.ts",
"test": "jest",
"test-d": "yarn run tsc && yarn run tsd",
"test:coverage": "jest --coverage",
"prepublish": "npm run dist"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"tslint --fix"
]
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^18.0.0",
"@types/webpack-env": "^1.13.6",
"codecov": "^4.0.0-0",
"jest": "^23.6.0",
"lint-staged": "^13.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-typescript2": "^0.32.0",
"simple-git-hooks": "^2.8.0",
"tsd": "^0.22.0",
"ts-jest": "^23.10.5",
"tslib": "^2.0.0",
"tslint": "^6.1.2",
"ts-node": "^10.0.0",
"typescript": "^4.0.2"
},
"resolutions": {
"handlebars": "4.5.0"
}
}