-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 916 Bytes
/
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
{
"name": "graphql-type",
"description": "Create GraphQL types with ease.",
"version": "1.1.1",
"author": {
"name": "Nick Gavrilov",
"email": "artnikpro@gmail.com"
},
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha test/all.spec.js",
"unit-watch": "NODE_ENV=test mocha -w test/all.spec.js",
"lint": "standard ."
},
"bugs": {
"url": "https://github.com/ilearnio/graphql-type/issues"
},
"homepage": "https://github.com/ilearnio/graphql-type",
"main": "index.js",
"files": [
"index.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ilearnio/graphql-type.git"
},
"devDependencies": {
"chai": "^4.2.0",
"graphql": "^15.3.0",
"mocha": "^8.0.1",
"sinon": "^9.0.2",
"standard": "^14.3.4"
},
"dependencies": {
"just-typeof": "^2.0.0"
}
}