-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "autocouch",
"version": "1.0.1",
"description": "This package combines the CRDT capacities of Automerge with the replication features of CouchDB. It focuses on an object oriented code style.",
"repository": {
"type": "git",
"url": "https://github.com/WoelkiM/AutoCouch"
},
"homepage": "https://github.com/WoelkiM/AutoCouch#README.md",
"main": "dist/index",
"typings": "dist/index",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc",
"watch": "tsc -w -p .",
"clean": "rm -rf dist",
"test": "cross-env NODE_ENV=test jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"crdt",
"replication",
"database"
],
"author": "Pascal Grosch",
"contributors": [
"Roman Krafft, Marcel Wölki"
],
"license": "MIT",
"dependencies": {
"@types/node": "^13.1.8",
"@types/pouchdb": "^6.4.0",
"@types/uuid": "^3.4.6",
"automerge": "^0.12.1",
"cross-env": "^7.0.0",
"pouchdb": "^7.1.1",
"uuid": "^3.4.0"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/jest": "^25.2.1",
"babel-jest": "^25.2.6",
"jest": "^25.2.7",
"prettier": "^2.0.2",
"ts-jest": "^25.3.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}