This repository has been archived by the owner on May 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "graphql-sequelize-schema-generator",
"version": "0.2.3",
"description": "A helper function to automatically generate `GraphQLSchema` from Sequelize models.",
"main": "index.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"check": "npm run lint && npm run test",
"clean": "rm -f dist/*",
"format": "prettier-eslint --write \"src/*.js\"",
"jest": "jest",
"jest-coverage": "npm run jest -- --coverage",
"lint": "eslint src --cache",
"test": "npm run test-db-reset && npm run jest",
"test-db-reset": "rm -rf tests/database.db && sequelize db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpellerin/graphql-sequelize-schema-generator.git"
},
"keywords": [
"graphql",
"sequelize"
],
"author": "Romain Pellerin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpellerin/graphql-sequelize-schema-generator/issues"
},
"homepage": "https://github.com/rpellerin/graphql-sequelize-schema-generator#readme",
"dependencies": {
"graphql": "^0.10.3",
"graphql-relay": "^0.5.2",
"graphql-sequelize": "^5.3.3",
"sequelize": "^4.2.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"jest-cli": "^19.0.2",
"prettier-eslint-cli": "^3.1.2",
"sequelize-cli": "^2.6.0",
"sqlite3": "^3.1.8",
"stringifier": "^1.3.0"
},
"peerDependencies": {
"graphql": "^0.10.3",
"sequelize": "^4.2.1"
},
"jest": {
"testEnvironment": "node",
"verbose": true
}
}