-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.58 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
84
{
"name": "graphql-geojson-scalar-types",
"version": "0.1.0",
"description": "GeoJSON Scalar Types for Graphql",
"license": "MIT",
"main": "lib/graphql-geojson-scalar-types.js",
"module": "es/graphql-geojson-scalar-types.js",
"types": "types/index.d.ts",
"files": [
"lib",
"es",
"src",
"types",
"geojson-validation.d.ts"
],
"keywords": [
"graphql",
"geojson",
"geo"
],
"homepage": "https://github.com/enniel/graphql-geojson-scalar-types",
"bugs": {
"url": "https://github.com/enniel/graphql-geojson-scalar-types/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/enniel/graphql-geojson-scalar-types.git"
},
"author": "Evgenij Razumov <[email protected]>",
"scripts": {
"clean": "rimraf lib es types",
"lint": "eslint *.{js,ts}",
"lint:fix": "eslint --fix *.{js,ts}",
"check:types": "tsc --noEmit",
"build": "yarn clean && rollup -c",
"demo": "nodemon --exec 'ts-node --project tsconfig.demo.json demo/index.ts'",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register --full-trace tests/**/*-test.ts",
"test:cover": "c8 yarn test",
"lefthook:install": "lefthook install",
"lefthook:pre-push": "lefthook run pre-push",
"lefthook:pre-commit": "lefthook run pre-commit"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"geojson-validation": "^1.0.2"
},
"peerDependencies": {
"graphql": "*"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@evilmartians/lefthook": "^1.0.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"c8": "^7.12.0",
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "15.3.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"rollup": "^2.77.1",
"rollup-plugin-typescript2": "^0.32.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}