-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "easybasejs",
"version": "4.2.22",
"description": "Browser and Node.js package for use with Easybase.io",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js && npx webpack",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "microbundle --no-compress --format modern,cjs",
"test": "echo 'No test specified' || true"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/easybase/easybasejs.git"
},
"author": "Easybase",
"bugs": {
"url": "https://github.com/easybase/easybasejs/issues"
},
"homepage": "https://github.com/easybase/easybasejs#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.4.0",
"microbundle": "^0.12.4",
"source-map-loader": "^1.1.1",
"ts-loader": "^8.0.7",
"typescript": "^4.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@aws-sdk/util-utf8-browser": "^3.18.0",
"@glidejs/glide": "^3.4.1",
"cross-fetch": "^3.1.4",
"easyqb": "^1.0.20",
"fast-deep-equal": "^3.1.3",
"fast-sha256": "^1.3.0"
}
}