-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
{
"name": "async-promised",
"version": "0.2.1",
"description": "Async control flow patterns using promises based on https://github.com/caolan/async",
"main": "./dist/async-promised.js",
"types": "./index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "tslint lib/**/*.ts test/**/*.ts",
"update-todo": "node support/update-todo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assisrafael/async-promises.git"
},
"keywords": [
"async",
"promise",
"control",
"flow",
"patterns"
],
"author": "Igor Rafael <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/assisrafael/async-promises/issues"
},
"homepage": "https://github.com/assisrafael/async-promises#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-typescript": "^7.1.0",
"@types/async": "^2.4.0",
"@types/jest": "^24.0.1",
"@types/node": "^11.9.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"outdent": "^0.7.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
},
"jest": {
"testEnvironment": "node",
"moduleDirectories": [
"./node_modules",
"./src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
}
},
"dependencies": {
"async": "^2.6.1",
"async-es": "^2.6.1"
}
}