forked from eslachance/enmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "enhanced-map",
"version": "1.0.0",
"description": "A simple and modern database wrapper to make sqlite database interactions much easier for beginners, with additional array helper methods.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --legacy-output",
"test": "nyc ava test/**/*.ts --fail-fast",
"coverage": "typescript-coverage-report",
"docs": "node ./docs/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eslachance/enmap.git"
},
"bugs": {
"url": "https://github.com/eslachance/enmap/issues"
},
"homepage": "https://enmap.evie.codes/",
"keywords": [
"sqlite",
"better-sqlite3",
"database",
"caching",
"storing",
"db",
"easy",
"sql",
"sqlite3",
"wrapper"
],
"author": "Evelyne Lachance <[email protected]> (https://evie.codes/)",
"contributors": [
"Evelyne Lachance <[email protected]> (https://evie.codes/)",
"Alexis Tyler <[email protected]> (https://wvvw.me)"
],
"license": "Apache-2.0",
"dependencies": {
"better-sqlite3": "^7.1.5",
"lodash": "^4.17.21",
"on-change": "^2.2.3",
"serialize-javascript": "^5.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.1",
"@types/lodash": "^4.14.168",
"@types/node": "^15.0.1",
"@types/serialize-javascript": "^5.0.0",
"ava": "^3.15.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"jsdoc-to-markdown": "^6.0.1",
"limax": "^2.1.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"tsup": "^4.10.1",
"typescript": "^4.2.4",
"typescript-coverage-report": "^0.6.0"
},
"types": "./dist/index.d.ts",
"ava": {
"files": [
"test/**/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
}
}