-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "@specialblend/mapql",
"version": "0.3.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"mapql": "bin/mapql"
},
"files": [
"bin",
"lib",
"README.md"
],
"author": "[email protected]",
"license": "ISC",
"description": "map, filter, and transform data structures using GraphQL and JSONPath.",
"scripts": {
"test": "jest",
"build": "tsc",
"prebuild": "rm -rf lib",
"prepublishOnly": "npm run build"
},
"peerDependenciesMeta": {
"graphql": "^15.6.1",
"graphql-anywhere": "^4.2.7",
"graphql-tag": "^2.12.5",
"jsonpath": "^1.1.1",
"rambda": "^6.9.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/jsonpath": "^0.2.0",
"graphql": "^15.6.1",
"graphql-anywhere": "^4.2.7",
"graphql-tag": "^2.12.5",
"jest": "^27.2.4",
"jsonpath": "^1.1.1",
"prettier": "^2.4.1",
"rambda": "^6.9.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"yaml": "^1.10.2"
}
}