-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "apollo-modules",
"version": "1.0.7",
"description": "Modular system for building apollo schemas",
"repository": {
"url": "https://github.com/tomitrescak/apollo-modules"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "mocha --report lcovonly src/*spec.ts --compilers ts:ts-node/register --bail",
"coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"Apollo",
"Graphql"
],
"author": "Tomi Trescak",
"license": "MIT",
"types": "./dist/index.d.ts",
"devDependencies": {
"babel-core": "^6.13.2",
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^8.1.0",
"ts-node": "^1.3.0",
"typescript": "^1.8.10"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/typings"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-lcov"
],
"all": false
}
}