-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.98 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
55
56
57
58
59
{
"name": "graphql-scalars",
"version": "0.1.5",
"description": "Custom scalars for GraphQL",
"main": "dist/index.js",
"scripts": {
"build": "babel src --ignore *.test.js --out-dir dist",
"clean": "rimraf dist",
"format:check": "prettier --list-different 'src/**/*.js'",
"lint": "eslint src",
"precommit": "lint-staged",
"prepublish":
"npm run format:check && npm run lint && npm run test:coverage && npm run clean && npm run build",
"test:coverage": "jest --coverage",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriano-di-giovanni/graphql-scalars.git"
},
"keywords": ["graphql", "type", "scalar", "date", "email", "url"],
"author": "Adriano Di Giovanni <[email protected]> (http://adrianodigiovanni.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adriano-di-giovanni/graphql-scalars/issues"
},
"homepage": "https://github.com/adriano-di-giovanni/graphql-scalars#readme",
"peerDependencies": {
"graphql": ">= 0.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^17.0.2",
"babel-register": "^6.26.0",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^2.3.1",
"graphql": "^0.7.0",
"husky": "^0.14.3",
"jest": "^17.0.0",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
},
"jest": {
"testPathDirs": ["src"]
},
"files": ["dist"],
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
}
}