-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "graphql-type-uuid",
"version": "0.2.0",
"description": "UUID scalar type for GraphQL.js",
"author": "Matias Olivera <moliverafreire@gmail.com>",
"license": "MIT",
"repository": "https://github.com/olistic/graphql-type-uuid.git",
"keywords": [
"graphql",
"uuid",
"rfc-4122"
],
"main": "lib/index.js",
"files": [
"lib"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "yarn clean:build && babel src --out-dir lib",
"clean": "yarn clean:build & yarn clean:coverage & yarn clean:modules",
"clean:build": "rimraf lib",
"clean:coverage": "rimraf coverage",
"clean:modules": "rimraf node_modules",
"lint": "eslint --cache src",
"lint:fix": "yarn lint --fix",
"pretest": "yarn lint",
"test": "jest",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watch"
},
"peerDependencies": {
"graphql": ">=0.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"graphql": "^15.0.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"prettier": "2.0.4",
"rimraf": "^3.0.2"
}
}