@4c/graphql-node-resource
Advanced tools
Comparing version 2.0.0 to 2.1.0
{ | ||
"name": "@4c/graphql-node-resource", | ||
"version": "2.0.0", | ||
"files": [ | ||
"lib", | ||
"es" | ||
], | ||
"main": "lib/index.js", | ||
"module": "es/index.js", | ||
"scripts": { | ||
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:flow", | ||
"build:cjs": "babel src -d lib --ignore __tests__", | ||
"build:esm": "BABEL_ENV=esm babel src --out-dir es --ignore __tests__", | ||
"build:flow": "for file in $(find ./src -name '*.js' -not -path '*/__tests__*'); do cp \"$file\" `echo \"$file\" | sed 's/\\/src\\//\\/lib\\//g'`.flow; cp \"$file\" `echo \"$file\" | sed 's/\\/src\\//\\/es\\//g'`.flow; done", | ||
"check": "flow check", | ||
"clean": "rm -rf lib es", | ||
"format": "eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'", | ||
"lint": "npm run check && eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css}'", | ||
"prepublish": "npm run build", | ||
"tdd": "jest --watch", | ||
"test": "npm run lint && jest --coverage" | ||
"version": "2.1.0", | ||
"main": "index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/4Catalyzer/graphql-node-resource.git" | ||
}, | ||
"author": "4Catalyzer", | ||
"license": "MIT", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"prettier": "@4c/prettier-config", | ||
"husky": { | ||
@@ -29,23 +21,10 @@ "hooks": { | ||
"lint-staged": { | ||
"*.js": [ | ||
"eslint --fix", | ||
"git add" | ||
], | ||
"*.{json,css,md}": [ | ||
"prettier --write --ignore-path .eslintignore", | ||
"git add" | ||
] | ||
"*": "yarn 4c lint --fix" | ||
}, | ||
"prettier": { | ||
"printWidth": 79, | ||
"singleQuote": true, | ||
"trailingComma": "all" | ||
}, | ||
"jest": { | ||
"collectCoverageFrom": [ | ||
"src/**" | ||
], | ||
"preset": "@4c/jest-preset", | ||
"testEnvironment": "node" | ||
}, | ||
"release": { | ||
"pkgRoot": "lib", | ||
"extends": [ | ||
@@ -55,6 +34,10 @@ "@4c/semantic-release-config" | ||
}, | ||
"repository": "https://github.com/4Catalyzer/graphql-server.git", | ||
"author": "4Catalyzer", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@types/graphql": "^14.5.0", | ||
"@types/graphql-relay": "^0.4.11", | ||
"@types/invariant": "^2.2.31", | ||
"@types/lodash": "^4.14.149", | ||
"@types/node": "^13.5.0", | ||
"@types/node-fetch": "^2.5.4", | ||
"@types/pluralize": "^0.0.29", | ||
"dataloader": "^2.0.0", | ||
@@ -66,3 +49,4 @@ "express": "^4.17.1", | ||
"node-fetch": "^2.6.0", | ||
"pluralize": "^8.0.0" | ||
"pluralize": "^8.0.0", | ||
"utility-types": "^3.10.0" | ||
}, | ||
@@ -73,31 +57,5 @@ "peerDependencies": { | ||
}, | ||
"devDependencies": { | ||
"@4c/babel-preset": "^7.2.1", | ||
"@4c/semantic-release-config": "^2.0.3", | ||
"@babel/cli": "^7.7.0", | ||
"@babel/core": "^7.7.2", | ||
"@babel/preset-flow": "^7.0.0", | ||
"babel-jest": "^24.9.0", | ||
"codecov": "^3.6.1", | ||
"eslint": "^6.6.0", | ||
"eslint-config-4catalyzer-flow": "^1.0.1", | ||
"eslint-config-4catalyzer-jest": "^2.0.1", | ||
"eslint-config-prettier": "^6.6.0", | ||
"eslint-plugin-flowtype": "^4.4.1", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-jest": "^22.21.0", | ||
"eslint-plugin-prettier": "^3.1.1", | ||
"fetch-mock": "^8.0.0", | ||
"flow-bin": "^0.110.1", | ||
"graphql": "^14.5.8", | ||
"graphql-relay": "^0.6.0", | ||
"husky": "^3.1.0", | ||
"jest": "^24.9.0", | ||
"lint-staged": "^9.4.3", | ||
"prettier": "^1.19.1", | ||
"semantic-release": "^15.13.31" | ||
}, | ||
"engines": { | ||
"node": ">=10.0.0" | ||
"node": ">=v10.19.0" | ||
} | ||
} |
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
0
0
2322
17
2
0
1
2
+ Added@types/graphql@^14.5.0
+ Added@types/graphql-relay@^0.4.11
+ Added@types/invariant@^2.2.31
+ Added@types/lodash@^4.14.149
+ Added@types/node@^13.5.0
+ Added@types/node-fetch@^2.5.4
+ Added@types/pluralize@^0.0.29
+ Addedutility-types@^3.10.0
+ Added@types/graphql@14.5.0(transitive)
+ Added@types/graphql-relay@0.4.11(transitive)
+ Added@types/invariant@2.2.37(transitive)
+ Added@types/lodash@4.17.15(transitive)
+ Added@types/node@13.13.52(transitive)
+ Added@types/node-fetch@2.6.12(transitive)
+ Added@types/pluralize@0.0.29(transitive)
+ Addedform-data@4.0.2(transitive)
+ Addedgraphql@14.7.0(transitive)
+ Addediterall@1.3.0(transitive)
+ Addedutility-types@3.11.0(transitive)