-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "@miroculus/anaconda-io-db",
"version": "3.0.1",
"description": "Handle the data that is saved on the local SQLite on the devices",
"main": "index.js",
"dependencies": {
"nanoid": "3.1.3",
"sqlite3": "5.0.0"
},
"devDependencies": {
"faker": "4.1.0",
"mocha": "7.1.1",
"nodemon": "2.0.2",
"pre-commit": "1.2.2",
"standard": "14.3.3"
},
"scripts": {
"test": "mocha",
"test:watch": "nodemon --exec mocha",
"standard": "standard \"./**.js\" \"lib/**/**.js\" \"test/**/**.js\"",
"standard:fix": "standard --fix \"./**.js\" \"lib/**/**.js\" \"test/**/**.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/miroculus/anaconda-io-db.git"
},
"keywords": [
"anaconda",
"db",
"sqlite",
"protocols"
],
"precommit.silent": false,
"pre-commit": [
"standard"
],
"author": "mjlescano",
"license": "MIT",
"bugs": {
"url": "https://github.com/miroculus/anaconda-io-db/issues"
},
"homepage": "https://github.com/miroculus/anaconda-io-db#readme"
}