-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "barnaclejs",
"version": "0.0.7",
"description": "Simple GraphQL schema builder, inferring from Typescript classes",
"main": "./index.js",
"types": "./index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"*.d.ts",
"*.js",
"lib/*.d.ts",
"lib/*.js",
"lib/**/*.d.ts",
"lib/**/*.js"
],
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aldahick/barnacle.git"
},
"keywords": [
"graphql",
"typescript",
"decorator"
],
"author": "Alex Hicks <alex@alexhicks.net> (https://alexhicks.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldahick/barnacle/issues"
},
"homepage": "https://github.com/aldahick/barnacle#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/source-map-support": "^0.4.1",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"reflect-metadata": "^0.1.12",
"source-map-support": "^0.5.9",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"peerDependencies": {
"reflect-metadata": "^0.1.12"
}
}