-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "inversify-graphql",
"version": "1.2.3",
"publisher": "Olivier Guimbal",
"description": "Builds dependency-inverted GraphQL schemas with InversifyJS",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"typecheck": "tsc --project tsconfig.json --noEmit",
"build": "rimraf bin && tsc -p tsconfig.build.json",
"test": "mocha -r ts-node/register test/**/*-spec.ts",
"sample": "node -r ts-node/register sample/minimal/index.ts",
"sample-complex": "node -r ts-node/register sample/complex-types/index.ts",
"release": "npm run build && cp README.md bin/README.md && cp package.json bin/package.json && npm publish bin"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/oguimbal/inversify-graphql.git"
},
"keywords": [
"inversify",
"inversifyjs",
"graphql",
"graphql-server",
"apollo-server"
],
"author": "Olivier Guimbal",
"license": "MIT",
"bugs": {
"url": "https://github.com/oguimbal/inversify-graphql/issues"
},
"homepage": "https://github.com/oguimbal/inversify-graphql#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.16.0",
"@types/graphql": "^14.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.12",
"apollo-server-express": "^2.5.0",
"chai": "^4.2.0",
"express": "^4.16.4",
"graphql": "^14.0.2",
"inversify": "5.0.1",
"mocha": "5.2.0",
"node-ts": "^2.1.2",
"reflect-metadata": "^0.1.12",
"rimraf": "^3.0.2",
"ts-node": "^7.0.1",
"tslint": "5.9.1",
"typescript": "^3.7.5"
}
}