-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "y-dynamodb",
"version": "0.1.7",
"author": "Viktor Hesselbom <[email protected]>",
"description": "DynamoDB database adapter for Yjs",
"license": "MIT",
"type": "module",
"main": "./dist/y-dynamodb.cjs",
"module": "./src/y-dynamodb.js",
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"test": "rollup -c && nyc --check-coverage --lines 100 --branches 82 --functions 100 --statements 100 node ./dist/test.cjs",
"dist": "rollup -c",
"lint": "standard",
"preversion": "npm run lint && npm run test && npm run clean && npm run dist && test -e dist/y-dynamodb.cjs"
},
"files": [
"dist/*",
"src/*"
],
"dependencies": {
"aws-sdk": "^2.809.0",
"lib0": "^0.2.35",
"yjs": "^13.4.7"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"nyc": "^15.1.0",
"rollup": "^2.20.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"standard": "^14.3.4"
},
"peerDependencies": {
"yjs": "^13.0.0"
}
}