-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "stringtree-migrate-driver-postgres",
"version": "0.1.1",
"description": "MySQL driver for stringtree-migrate Database-agnostic migration utility.",
"main": "stringtree-migrate-driver-postgres.js",
"scripts": {
"test": "node test/test_all.js",
"prepare": "husky install",
"lint": "eslint *.js .",
"lint:fix": "eslint --fix --ext .js ."
},
"dependencies": {
"async": "0.9.0",
"debug": "^2.2.0",
"pg": "^6.0.3"
},
"devDependencies": {
"eslint": "^8.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"husky": "^7.0.0",
"stringtree-migrate-driver-testsuite": "~1.0.0",
"tape": "^3.0.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/guidesmiths/stringtree-migrate-driver-postgres.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"author": {
"name": "Frank Carver",
"email": "[email protected]",
"url": "http://frankcarver.me/"
}
}