This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.43 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "shyft-storage-connector",
"version": "0.7.0",
"description": "Storage connector for Shyft",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "jest --testPathIgnorePatterns test/",
"test-watch": "jest --testPathIgnorePatterns test/ --watch",
"test-integration": "TZ=UTC jest --runInBand",
"test-integration-watch": "TZ=UTC jest --runInBand --watch",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"lint-staged": "lint-staged",
"coverage": "NODE_ENV=test TZ=UTC jest --runInBand --coverage",
"coverage-ci": "npm run coverage && cat ./coverage/lcov.info | codecov",
"build": "mkdir -p lib; npm run test && NODE_ENV=build babel src -d lib --verbose",
"build-watch": "mkdir -p lib; NODE_ENV=build babel src -w -d lib --verbose",
"release": "np --no-publish"
},
"files": [
"lib",
"storageScripts"
],
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": "./node_modules/eslint/bin/eslint.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"pre-commit": "lint-staged",
"keywords": [
"shyft",
"api",
"postgres",
"model",
"generator",
"storage",
"postgresql",
"dataloader",
"shyft",
"migrations",
"mutations",
"model",
"finite-state-machine",
"permissions",
"database",
"acl",
"typeorm"
],
"author": "Chris Kalmar <[email protected]>",
"engines": {
"node": ">= 6.0.0",
"npm": ">= 2.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chriskalmar/shyft-storage-connector"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/runtime": "7.12.1",
"babel-eslint": "10.1.0",
"casual": "1.6.2",
"codecov": "3.8.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"husky": "4.3.0",
"jest": "26.5.2",
"lint-staged": "10.4.0",
"pg": "8.4.0",
"prettier": "2.1.2",
"prettier-eslint": "11.0.0",
"prettier-eslint-cli": "5.0.0",
"rimraf": "3.0.2",
"shyft": "0.8.0",
"sqlite3": "5.0.0",
"typeorm": "0.2.28"
},
"dependencies": {
"dataloader": "^2.0.0",
"json-shaper": "^1.2.0",
"lodash": "^4.17.10",
"toposort": "^2.0.2"
}
}