-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.56 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
{
"name": "graphql-query-parser",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/msleevi/graphql-query-parser.git"
},
"version": "0.0.1",
"description": "A utility for parsing queries out of GraphQL files",
"main": "index.ts",
"scripts": {
"build": "npm run build:compile && npm run test && npm run build:dependency",
"build:compile": "tsc --project tsconfig.json",
"build:dependency": "depcruise --exclude \"^node_modules\" --output-type dot lib | dot -T svg > dependencygraph.svg",
"lint": "npm run lint:lib && npm run lint:test",
"lint:lib": "eslint lib/**/*.ts",
"lint:test": "eslint tests/**/*.ts",
"coverage": "nyc npm run test",
"test": "npm run unit && npm run integration",
"unit": "mocha --opts tests/unit/mocha.opts",
"integration": "mocha --opts tests/integration/mocha.opts"
},
"keywords": [
"graphql",
"parse",
"query"
],
"author": "Michael Sleevi <michael.sleevi@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.2",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"chai": "^4.2.0",
"dependency-cruiser": "^4.19.1",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"ts-node": "^8.2.0",
"typescript": "^3.5.1"
},
"bugs": {
"url": "https://gitlab.com/msleevi/graphql-query-parser/issues"
},
"homepage": "https://gitlab.com/msleevi/graphql-query-parser#readme"
}