-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "tagmesh",
"version": "1.1.0",
"description": "A library to enable cross-application real-time collaborative tagging and notes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"directories": {
"doc": "docs"
},
"dependencies": {
"@babel/traverse": "^7.23.2",
"json5": "^2.2.2",
"node-gyp": "^10.0.1",
"pouchdb": "^7.3.0",
"semver": "^6.3.1",
"tough-cookie": "^4.1.3",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/pouchdb": "^6.4.0",
"jest": "^28.1.3",
"pouchdb-adapter-memory": "^7.3.0",
"ts-jest": "^28.0.7",
"tslint": "^6.1.3"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ssadedin/tagmesh.git"
},
"files": [
"lib/**/*"
],
"keywords": [],
"author": "Simon Sadedin",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/ssadedin/tagmesh/issues"
},
"homepage": "https://gitlab.com/ssadedin/tagmesh#readme"
}