-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 1.97 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
75
76
77
78
79
80
81
82
83
{
"name": "ts-transform-graphql-tag",
"version": "0.2.1",
"description": "Compiles GraphQL tagged template strings using graphql-tag in TypeScript files.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run dist",
"dist:clean": "rimraf dist",
"dist:build": "tsc",
"dist": "npm-run-all dist:clean dist:build",
"test:clean": "rimraf test/fixture/actual/*.js",
"test:jest": "jest",
"test": "npm-run-all test:clean test:jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firede/ts-transform-graphql-tag.git"
},
"keywords": [
"typescript",
"transform",
"graphql-tag",
"graphql"
],
"author": {
"name": "Firede",
"email": "firede@firede.us"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/firede/ts-transform-graphql-tag/issues"
},
"homepage": "https://github.com/firede/ts-transform-graphql-tag#readme",
"devDependencies": {
"@types/debug": "0.0.31",
"@types/glob": "^7.1.0",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.3",
"debug": "^4.1.0",
"glob": "^7.1.3",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"npm-run-all": "^4.1.3",
"prettier": "^1.15.1",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"typescript": "^3.1.6"
},
"peerDependencies": {
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql-tag": "^2.2.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}