This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@n1ru4l/graphql-schema-generator-rest",
"version": "0.0.0-semantically-released",
"description":
"A graphql schema generator for directive annotated type definitions",
"module": "./lib/schema-generator.js",
"main": "./lib/bundle.umd.js",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Laurin Quast",
"url": "https://github.com/n1ru4l"
},
"keywords": ["graphql"],
"repository": {
"type": "git",
"url": "https://github.com/n1ru4l/graphql-schema-generator-rest.git"
},
"bugs": {
"url": "https://github.com/n1ru4l/graphql-schema-generator-rest"
},
"dependencies": {
"graphql-tools": "^2.6.1"
},
"scripts": {
"cm": "git-cz",
"precommit": "lint-staged",
"test": "jest",
"prebuild": "rimraf lib/*",
"build": "babel src --out-dir lib --ignore src/__tests__",
"postbuild": "rollup -c",
"prepare-for-release": "babel-node scripts/prepare-release.js",
"semantic-release":
"semantic-release pre && npm publish && semantic-release post"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"jest": {
"testMatch": ["**/src/__tests__/*.test.js"]
},
"files": ["lib", "README.md", "LICENSE"],
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-jest": "23.6.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"condition-circle": "2.0.2",
"copy-pkg": "1.0.0",
"cross-env": "5.2.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.19.1",
"eslint-plugin-jest": "21.27.2",
"eslint-plugin-prettier": "2.7.0",
"fetch-mock": "5.13.1",
"fs-extra": "7.0.1",
"graphql": "0.13.2",
"graphql-tag": "2.11.0",
"husky": "0.14.3",
"jest": "23.6.0",
"lint-staged": "7.3.0",
"prettier": "1.19.1",
"rimraf": "2.7.1",
"rollup": "0.68.2",
"semantic-release": "11.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"verifyConditions": "condition-circle",
"branch": "master"
}
}