-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 KB
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
{
"name": "sql-data-api",
"version": "0.3.12",
"description": "Sql Data Api client for Javascript",
"keywords": [
"sql",
"api"
],
"main": "dist/sql-data-api.min.js",
"module": "dist/sql-data-api.esm.js",
"typings": "dist/sql-data.api.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"test:dev:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
"build": "npx rollup -c",
"build:publish": "npx rollup -c && npm publish",
"dev": "npx rollup --config rollup.config.dev.js --watch",
"lint": "npx eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FalconSoft/sql-data-api-client-js.git"
},
"author": {
"name": "Pavlo Paska - ppaska@falconsoft-ltd.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FalconSoft/sql-data-api-client-js/issues"
},
"homepage": "https://github.com/FalconSoft/sql-data-api-client-js",
"dependencies": {
"axios": "^1.6.7",
"datapipe-js": "^0.3.31"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"ace-builds": "^1.4.12",
"eslint": "^7.14.0",
"rollup": "^2.60.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
}
}