-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.32 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": "@croquiscom/graphql-scalar-types",
"version": "0.2.2",
"description": "GraphQL scalar types for croquis.com",
"repository": {
"type": "git",
"url": "https://github.com/croquiscom/graphql-scalar-types.git"
},
"keywords": [
"graphql"
],
"author": "Sangmin Yoon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/croquiscom/graphql-scalar-types/issues"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"build": "rimraf lib && tsc -p src/tsconfig.build.json",
"lint": "tslint -p tsconfig.json",
"test": "mocha --require ts-node/register -t 5000 --exit 'test/*.ts'",
"test:cov": "nyc npm run test",
"test:coveralls": "npm run test:cov && cat coverage/lcov.info | coveralls"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"graphql": "^14.4.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/graphql": "^14.2.2",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.36",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"lcov"
]
}
}