-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
54
{
"name": "graphql-2-json-schema",
"version": "0.10.0",
"main": "dist/index.js",
"repository": "[email protected]:wittydeveloper/graphql-to-json-schema.git",
"author": "Charly POLY <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"json5": "^2.2.0",
"lodash": "^4.17.20"
},
"scripts": {
"test": "jest",
"test:watch": "nodemon -x 'npm run test'",
"prettier:check": "prettier -c \"**/*.ts\"",
"prettier:format": "prettier -w \"**/*.ts\"",
"generateReadmeExample": "npx ts-node doc-exampleGenerator.ts",
"prepare": "npx tsc"
},
"devDependencies": {
"@types/ajv": "1.0.0",
"@types/jest": "26.0.20",
"@types/json-schema": "7.0.6",
"@types/lodash": "4.14.168",
"@types/node": "14.18.63",
"ajv": "7.2.4",
"graphql": "15.9.0",
"jest": "26.6.3",
"nodemon": "2.0.22",
"prettier": "2.2.1",
"commit-and-tag-version": "9.6.0",
"ts-jest": "26.5.6",
"tslint": "5.20.1",
"typescript": "4.1.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/([^\\.d]*)|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}