-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.26 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "expirable-synchronized",
"version": "1.1.7",
"description": "A decorator to make any function that returns promise atomic with expiration",
"homepage": "https://github.com/Pike96/expirable-synchronized",
"repository": {
"type": "git",
"url": "git://github.com/Pike96/expirable-synchronized.git"
},
"bugs": {
"url": "https://github.com/Pike96/expirable-synchronized/issues"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "npm run clean && babel --out-dir=dist/ src/ && jest dist",
"dev": "npm run clean && babel --source-maps --out-dir=dist/ src/ && npm link",
"test": "npm run build",
"test:badges": "npm run test:coverage && make-coverage-badge",
"test:coverage": "npm run build && jest dist --coverage --config ./jest.config.js"
},
"keywords": [
"annotation",
"async",
"asynchronous",
"atomic",
"await",
"babel",
"block",
"chain",
"class",
"decorator",
"es6",
"es2015",
"exclusive",
"expirable",
"fair",
"function",
"js",
"javascript",
"lock",
"mutex",
"node",
"nodejs",
"promise",
"promises",
"queue",
"race",
"synchronise",
"synchronised",
"synchronize",
"synchronized",
"typescript",
"锁",
"公平锁",
"同步",
"同步方法",
"类",
"装饰器",
"队列"
],
"author": {
"name": "Yucheng Lin",
"email": "[email protected]",
"url": "https://github.com/Pike96/"
},
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-decorators": "7.10.5",
"@babel/plugin-proposal-export-default-from": "7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.0",
"@babel/plugin-transform-async-to-generator": "7.10.4",
"@babel/preset-env": "7.10.4",
"babel-eslint": "^10.0.2",
"babel-jest": "^26.1.0",
"babel-plugin-module-resolver": "~4.0.0",
"eslint": "^7.5.0",
"eslint-plugin-jest": "^23.19.0",
"jest": "^26.1.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2"
}
}