-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (49 loc) · 1.28 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
{
"version": "1.0.1",
"name": "@awspilot/dynamodb-sql-util",
"author": {
"name": "Adrian Praja",
"email": "[email protected]",
"url": "https://awspilot.dev"
},
"description": "Convert SQL to DynamoDB payload",
"keywords": [
"aws",
"dynamodb",
"sql"
],
"homepage": "https://awspilot.dev/",
"bugs": "https://github.com/awspilot/dynamodb-sql-util/issues",
"repository": {
"type": "git",
"url": "https://github.com/awspilot/dynamodb-sql-util"
},
"main": "./dist/sqlparser.node.js",
"browser": "./dist/sqlparser.browser.js",
"license": "MIT",
"dependencies": {
},
"peerDependencies": {
},
"devDependencies": {
"jison": "^0.4.18",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"terser-webpack-plugin": "^2.3.1",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"ifdef-loader": "^2.1.4"
},
"scripts": {
"build:node": "webpack --config webpack.node.js",
"build:browser": "webpack --config webpack.browser.js",
"buildnodeparser": "jison src/sqlparser.node.jison -o dist/sqlparser.node.js -m commonjs",
"buildbrowserparser": "jison src/sqlparser.browser.jison -o dist/sqlparser.browser.js"
},
"engines": {
"node": "*"
}
}