This repository was archived by the owner on Jan 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.81 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.81 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
{
"name": "jsql",
"version": "0.1.0",
"description": "Interface with IndexedDB using SQL queries.",
"private": true,
"scripts": {
"test": "./node_modules/.bin/jest lib",
"test-ui": "./node_modules/.bin/jest visuals",
"test-all": "./node_modules/.bin/jest",
"get-coverage": "./node_modules/.bin/jest lib --coverage",
"start": "(npm run editor-typings && ./node_modules/.bin/webpack-dev-server --open)",
"build": "./node_modules/.bin/webpack --config lib-webpack.config.js",
"editor-build": "(npm run editor-typings && ./node_modules/.bin/webpack)",
"editor-typings": "node src/visuals/monaco/typings/addTypings.js",
"doc": "./node_modules/.bin/typedoc --out docs/docs src/lib/database/database.ts src/lib/table/table.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UltimatePro-Grammer/JSQL.git"
},
"author": "UltimateProGrammer",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/UltimatePro-Grammer/JSQL/issues"
},
"homepage": "https://github.com/UltimatePro-Grammer/JSQL#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@purtuga/esm-webpack-plugin": "^1.4.0",
"@types/jest": "^26.0.14",
"babel-jest": "^26.3.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"fake-indexeddb": "^3.1.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.4.2",
"monaco-editor-webpack-plugin": "^2.0.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.4",
"typedoc": "^0.19.2",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"dexie": "^3.0.2",
"monaco-editor": "^0.21.1"
}
}