forked from maxfortun/sharedb-promises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "sharedb-promises",
"version": "0.0.4",
"description": "ShareDB Promises",
"config": {
"main": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxfortun/sharedb-promises.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "Max Fortun <[email protected]>",
"license": "ISC",
"keywords": [ "sharedb", "promise" ],
"scripts": {
"lint": "eslint $npm_package_config_main",
"test": "DEBUG=sharedb-promises* mocha",
"release": "git tag | grep -q ^$npm_package_version\\$ && echo \"Release $npm_package_version already exists.\" || ( ( git diff-index --quiet HEAD || git commit -a -m \"Releasing $npm_package_version\" ) ; git push && git tag $npm_package_version && git push origin $npm_package_version; npm publish )"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^6.8.0",
"mocha": "^10.2.0",
"sharedb": "^4.1.1",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"debug": "^4.3.4"
}
}