forked from AlaSQL/alasql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.37 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "alasql",
"description": "Use SQL to select and filter javascript data - including relational joins and search in nested objects (JSON). Export to and import from Excel and CSV",
"version": "4.1.4",
"author": "Andrey Gershun <[email protected]>",
"contributors": [
"Mathias Wulff <[email protected]>"
],
"main": "dist/alasql.fs.js",
"browser": "dist/alasql.min.js",
"directories": {
"test": "test"
},
"typings": "types/alasql.d.ts",
"scripts": {
"test": "gulp && yarn test-only",
"test-ci": "(yarn test-format || 1) && yarn test && yarn install-g && alasql 'select 1 as Succes'",
"test-only": "mocha ./test --reporter dot",
"test-browser": "node test/browserTestRunner.js 7387",
"test-cover": "# istanbul cover -x 'lib/zt/zt.js' --dir test/coverage _mocha",
"build": "yarn format && gulp",
"build-jison": "gulp --jison && gulp",
"build-watch": "gulp watch",
"install-g": "yarn build && npm uninstall alasql -g && npm install -g .",
"release": "yarn version",
"jison": "npx jison-gho ./src/alasqlparser.jison -o ./src/alasqlparser.js",
"fmt": "yarn pretty-commit --write",
"format": "yarn pretty-since-dev --write",
"format-all": "yarn pretty-all --write",
"test-format": "yarn pretty-since-dev --list-different || echo 'Please correct file formatting using `yarn format` and try again.'",
"lint": "eslint .",
"pretty-since-dev": "{ git diff --name-only --diff-filter=d origin/develop ; git diff --name-only --diff-filter=d --staged origin/develop ; } | sort | uniq | grep -vE '^dist/|^test/coverage|^lib/|.min.js$' | grep -E '\\.(scss|css|js|ts|vue|json)$' | xargs npx prettier",
"pretty-commit": "{ git diff --name-only --diff-filter=d ; git diff --name-only --diff-filter=d --staged ; } | sort | uniq | grep -vE '^dist/|^test/coverage|^lib/|.min.js$' | grep -E '\\.(scss|css|js|ts|vue|json)$' | xargs npx prettier",
"pretty-all": "git ls-tree --full-tree --name-only -r HEAD | grep -vE '^dist/|^test/coverage|^lib/|.min.js$' | grep -E '\\.(scss|css|js|ts|vue|json)$' | xargs npx prettier",
"push": "git push --force-with-lease && git push --no-verify --tags #",
"repush": "yarn rebase && yarn push",
"amend": "git reset --soft HEAD~1 && sleep 1 && git add --all && git commit --file .git/COMMIT_EDITMSG # This works with husky hooks",
"commit": "cmdmix 'git add --all && git commit -am \"%1\"'",
"add": "git add --all",
"goto": "git fetch && git checkout",
"todo": "git ls-tree --full-tree --name-only -r head | xargs grep -inEro '\\Wtodo[ :].*' #",
"fresh": "cmdmix 'yarn goto '%1' && yarn pull-hard'",
"pre-pr": "cmdmix 'yarn fresh '%1' && yarn repush'",
"prepare": "husky install",
"preversion": "yarn && yarn test",
"postversion": "npm publish && git push && git push --tags && echo \"Successfully released version $npm_package_version\""
},
"dependencies": {
"cross-fetch": "4",
"yargs": "16"
},
"devDependencies": {
"blueimp-md5": "2.19.0",
"cmdmix": "2.1.1",
"dom-storage": "2.1.0",
"eslint": "8.47.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"git-branch-is": "4.0.0",
"gulp": "4.0.2",
"gulp-concat": "2.6.1",
"gulp-exec": "5.0.0",
"gulp-jison": "1.2.0",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.4",
"gulp-shell": "0.8.0",
"gulp-uglify": "3.0.2",
"husky": "8.0.3",
"lint-staged": "14.0.0",
"mocha": "10.2.0",
"mocha.parallel": "0.15.6",
"open": "9.1.0",
"prettier": "3.0.1",
"strftime": "0.10.2",
"tabletop": "1.6.3",
"uglify-js": "3.17.4"
},
"resolutions": {
"got": "13.0.0",
"axios": "1",
"json5": "2",
"underscore": "1",
"glob-parent": "6",
"decode-uri-component": "0.2",
"semver": "7"
},
"engines": {
"node": ">=15"
},
"repository": {
"type": "git",
"url": "http://github.com/alasql/alasql.git"
},
"bugs": {
"url": "https://github.com/alasql/alasql/issues"
},
"bin": {
"alasql": "./bin/alasql-cli.js"
},
"homepage": "https://github.com/alasql/alasql",
"keywords": [
"SQL",
"javascript",
"database",
"Excel",
"XLSX",
"XLS",
"CSV"
],
"license": "MIT",
"prettier": {
"useTabs": true,
"printWidth": 100,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5",
"bracketSpacing": false
},
"husky": {
"hooks": {
"pre-push": "yarn test-format || (echo please format using 'yarn format' && exit 1)"
}
}
}