forked from binded/advisory-lock
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.6 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
57
58
{
"name": "@earnest/advisory-lock",
"version": "1.1.1",
"description": "Distributed locking using PostgreSQL advisory locks",
"main": "lib/index.js",
"bin": {
"withlock": "./lib/bin/withlock.js"
},
"scripts": {
"pretest": "npm run lint",
"build": "babel ./src --out-dir ./lib --copy-files",
"lint": "eslint src/ test/",
"release": "npm run build && npm publish && git push && git push --tags",
"preversion": "npm test",
"postversion": "npm run build",
"test": "npm run test:quick",
"test:quick": "babel-tape-runner test/*.test.js",
"dev": "nodemon --exec npm -- run test:quick",
"docker": "blockai-dc && docker-compose up dbcreate"
},
"repository": {
"type": "git",
"url": "git://github.com/blockai/advisory-lock.git"
},
"homepage": "https://github.com/blockai/advisory-lock",
"keywords": [
"postgres",
"postgresql",
"lock",
"distributed lock",
"mutex",
"advisory lock"
],
"bugs": {
"url": "https://github.com/blockai/advisory-lock/issues"
},
"author": "Olivier Lalonde <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-tape-runner": "^2.0.1",
"bluebird": "2.10.2",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.1",
"nodemon": "^1.9.2",
"tape": "^4.5.1"
},
"dependencies": {
"babel-polyfill": "^6.22.0",
"debug": "^2.2.0",
"minimist": "^1.2.0",
"pg": "^4.5.5"
}
}