-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "pg-query-deparser",
"version": "0.0.1",
"description": "Format PostgreSQL Queries from AST",
"homepage": "http://github.com/zhm/pg-query-deparser",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run clean && npm run build",
"lint": "node_modules/.bin/eslint src/* src/**/*",
"build": "node_modules/.bin/babel src --out-dir dist --source-maps",
"watch": "node_modules/.bin/babel src --out-dir dist --source-maps --watch",
"clean": "rm -rf dist",
"check-deps": "node_modules/.bin/ncu",
"update-deps": "node_modules/.bin/ncu -u"
},
"author": "Zac McCormick <[email protected]> (http://github.com/zhm)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/zhm/pg-query-deparser.git"
},
"eslintConfig": {
"extends": "fulcrum"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-1": "^6.5.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"eslint": "^2.11.1",
"eslint-config-fulcrum": "^1.0.2",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-react": "^5.1.1",
"glob": "^7.0.3",
"mocha": "^2.5.3",
"npm-check-updates": "^2.6.5",
"source-map-support": "^0.4.0",
"uglify-js": "^2.6.2",
"watch-cli": "^0.2.1",
"watchify": "^3.7.0"
},
"dependencies": {
"lodash": "^4.13.1"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"database"
]
}