-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "worldbase",
"version": "0.9.1",
"description": "JSON and YAML database module with ease of use.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"lint": "eslint src --fix"
},
"types": "types/index.d.ts",
"keywords": [
"database",
"worldbase",
"json",
"yaml"
],
"author": "islemci",
"license": "GNUv3",
"repository": {
"type": "git",
"url": "https://github.com/islemci/worldbase.git"
},
"dependencies": {
"lodash": "^4.17.21",
"yaml": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@types/benchmark": "^2.1.0",
"@types/lodash": "^4.14.169",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.45",
"benchmark": "^2.1.4",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.2",
"mocha": "^8.4.0"
}
}