-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@flatlify/gitdb",
"version": "0.1.6",
"description": "A simple, robust and performant git-based database",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "rimraf ./lib && tsc",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flatlify/gitdb.git"
},
"keywords": [
"git",
"db",
"store"
],
"author": "sergesemashko",
"license": "MIT",
"bugs": {
"url": "https://github.com/flatlify/gitdb/issues"
},
"homepage": "https://github.com/flatlify/gitdb#readme",
"files": [
"lib/**/*",
"src/**/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.6",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/fs-extra": "^9.0.0",
"@types/uuid": "^8.0.0",
"eslint-config-airbnb": "^18.2.0",
"find-git-root": "^1.0.4",
"fs-extra": "^9.0.0",
"isomorphic-git": "^1.4.0",
"uuid": "^8.1.0"
}
}