-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
59
60
61
62
63
64
{
"name": "await-mutex",
"version": "1.0.2",
"description": "Promised based Mutex",
"license": "Unlicense",
"author": {
"name": "Mauro Titimoli",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/mgtitimoli/await-mutex"
},
"bugs": {
"url": "http://github.com/mgtitimoli/await-mutex/issues"
},
"keywords": [
"async",
"await",
"block",
"lock",
"locking",
"mutex",
"mutual-exclusion",
"parallel",
"semaphore",
"sync",
"synchronize",
"synchronization",
"unlock",
"unlocking"
],
"main": "dist/mutex.js",
"scripts": {
"compile": "rm -f ./dist/*; babel ./src --out-dir ./dist",
"coverage": "babel-node ./node_modules/.bin/isparta cover _mocha",
"coverage-browse": "npm run coverage && x-www-browser ./coverage/lcov-report/index.html",
"dev": "mocha --reporter min --watch",
"lint": "eslint src/**/*.js test/**/*.js examples/**/*.js",
"prepublish": "npm test && npm run compile",
"test": "mocha"
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"babel-runtime": "~6.3.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-runtime": "~6.3.0",
"babel-preset-es2015": "~6.3.0",
"babel-preset-stage-0": "~6.3.0",
"babel-register": "~6.3.0",
"eslint": "^1.10.3",
"isparta": "^4.0.0",
"mocha": "^2.3.4",
"np": "^2.20.1",
"npm-check-updates": "^2.5.4",
"pre-commit": "^1.1.2"
}
}