-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 749 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 749 Bytes
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
{
"name": "cargodb",
"version": "3.0.3",
"description": "A local database provider for electron",
"main": "dist/cargodb.js",
"scripts": {
"start": "parcel watch src/cargo.ts --out-dir dist --out-file cargodb.js --target es6 --no-hmr --public-url ./",
"sandbox": "node test/sandbox",
"test": "glados test/test.js"
},
"keywords": [
"cargodb",
"db",
"cargo",
"localstorage",
"storage",
"crate",
"database"
],
"author": "Paweł Karaś (Phoenix)",
"license": "MIT",
"dependencies": {
"glados-chamber": "^1.2.2",
"shortid": "^2.2.15",
"simple-encryptor": "^2.0.0"
},
"devDependencies": {
"chalk": "^4.0.0",
"parcel-bundler": "^1.12.4",
"typescript": "^3.8.3"
}
}