-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 872 Bytes
/
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
{
"name": "synchronize-decorator",
"version": "0.1.1",
"description": "A synchronize decorator, which allows to call a method once a time",
"keywords": [
"typescript",
"decorator",
"sync",
"synchronous",
"node",
"javascript",
"class",
"async",
"await"
],
"author": "Thomas-P",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thomas-P/decorator-synchronize/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thomas-P/decorator-synchronize"
},
"main": "./lib/synchronize.js",
"types": "./lib/synchronize.ts",
"dependencies": {},
"scripts": {
"test": "tsc && mocha"
},
"devDependencies": {
"@types/assert": "^1.4.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.3.0",
"assert": "^2.0.0",
"mocha": "^5.0.0",
"typescript": "^2.6.1"
}
}