-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.06 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
{
"version": "1.5.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@alexvcasillas/graphdb",
"description": "An in memory database with sync capabilities",
"author": "Alex Casillas",
"module": "dist/graphdb.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alexvcasillas/graphdb.git"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/uuid": "^3.4.7",
"husky": "^4.2.3",
"tsdx": "^0.12.3",
"tslib": "^1.11.0",
"typescript": "^3.8.2"
},
"dependencies": {
"date-fns": "^2.10.0",
"uuid": "^3.4.0"
},
"jest": {
"globals": {
"__DEV__": false
}
}
}