forked from sql-formatter-org/sql-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 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
{
"name": "sql-formatter",
"version": "2.3.1",
"description": "Formats whitespaces in a SQL query to make it more readable",
"license": "MIT",
"main": "lib/sqlFormatter.js",
"keywords": [
"sql",
"formatter",
"format",
"n1ql",
"whitespaces"
],
"authors": [
"Rene Saarsoo",
"Uku Pattak"
],
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint .",
"test": "jest",
"test:watch": "npm run test -- --watch",
"check": "npm run lint && npm run test",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/sqlFormatter.js dist/sql-formatter.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/sqlFormatter.js dist/sql-formatter.min.js",
"prepublish": "npm run clean && npm run check && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/zeroturnaround/sql-formatter.git"
},
"bugs": {
"url": "https://github.com/zeroturnaround/sql-formatter/issues"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"lodash": "^4.16.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.11.4",
"babel-eslint": "^7.1.0",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"cross-env": "^3.1.3",
"eslint": "^3.7.1",
"eslint-config-zt": "^1.3.0",
"eslint-plugin-react": "^7.6.1",
"jest": "^17.0.2",
"rimraf": "^2.3.4",
"webpack": "^1.13.1"
},
"jest": {
"testPathDirs": [
"test"
],
"testRegex": ".*Test",
"collectCoverage": true
}
}