-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 910 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
{
"name": "atomicasync",
"version": "0.2.1",
"description": "Ensure asynchronous function is executed independently and sequentially, without being overlap",
"keywords": [
"atomicasync",
"async",
"atomic"
],
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/min9nim/atomicasync.git"
},
"scripts": {
"build": "tsc -p tsconfig.json --declaration --outDir dist",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"dev": "ts-node test"
},
"author": "min9nim <min9nim@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/es6-shim": "^0.31.39",
"@types/mocha": "^5.2.7",
"@types/node": "^15.0.1",
"chai": "^4.2.0",
"if-logger": "^0.6.6",
"mocha": "7.2.0",
"sinon": "^8.1.1",
"ts-node": "^8.5.4",
"tslib": "^1.10.0",
"typescript": "^4.2.4"
},
"dependencies": {}
}