forked from gajus/postloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.13 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"files": [
"test/**/*"
],
"helpers": [
"test/helpers/**/*"
],
"require": [
"@babel/register"
],
"sources": [
"src/**/*"
]
},
"bin": "./dist/bin/index.js",
"dependencies": {
"es6-error": "^4.1.1",
"lodash": "^4.17.11",
"pluralize": "^8.0.0",
"roarr": "^2.13.2",
"slonik": "^16.19.5",
"yargs": "^13.2.4"
},
"description": "A scaffolding tool for projects using DataLoader, Flow and PostgreSQL.",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"ava": "^2.1.0",
"babel-plugin-istanbul": "^5.1.4",
"babel-plugin-macros": "^2.6.1",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-canonical": "^17.1.0",
"flow-bin": "^0.101.0",
"flow-copy-source": "^2.0.6",
"husky": "^2.4.1",
"inline-loops.macro": "^1.0.3",
"nyc": "^14.1.1",
"semantic-release": "^15.13.16"
},
"engines": {
"node": ">=8"
},
"keywords": [
"flowtype",
"postgres"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "postloader",
"nyc": {
"all": true,
"exclude": [
"src/bin",
"src/queries"
],
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"html",
"text-summary"
],
"require": [
"@babel/register"
],
"silent": true,
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/postloader"
},
"scripts": {
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && flow-copy-source src dist",
"dev": "NODE_ENV=development babel ./src --out-dir ./dist --copy-files --source-maps --watch",
"lint": "eslint ./src && flow",
"test": "NODE_ENV=test nyc ava --verbose --serial && nyc report"
},
"version": "1.0.0"
}