-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "seriesdb-js",
"version": "0.9.1",
"description": "Seriesdb implementation for js.",
"author": "Chaoqian Xu <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"pack": "npx webpack --config webpack.config.js --progress",
"start": "npx webpack serve",
"test": "npx jest --coverage",
"format": "npx prettier --write \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\" --ignore-path *.d.ts",
"lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx --ignore-pattern *.d.ts",
"clean": "rm -rf dist/* lib/* data/*"
},
"files": [
"lib",
"LICENSE"
],
"repository": "https://github.com/xuchaoqian/seriesdb-js.git",
"dependencies": {
"@msgpack/msgpack": "^2.8.0",
"adler-32": "^1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-jest": "^29.1.0",
"bufferutil": "^4.0.6",
"canvas": "^2.10.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"html-webpack-plugin": "^5.5.0",
"indexeddbshim": "^10.0.0",
"jest": "^29.1.1",
"prettier": "^2.7.1",
"sqlite3": "^5.1.1",
"dexie": "^3.2.2",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"utf-8-validate": "^5.0.9",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {}
}