-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.41 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
{
"name": "promx",
"version": "2.0.2",
"description": "a natural/modern/safer way to handle promise in async/await",
"main": "dist/promx.js",
"types": "dist/promx.d.ts",
"scripts": {
"test": "jest",
"lint": "tslint 'src/**/*.ts'",
"build": "tsc",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"codecov": "jest --coverage --coverageReporters=text-lcov > coverage.lcov && codecov",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/mouafa/promx.git"
},
"keywords": [
"promise",
"async",
"await",
"error",
"handling"
],
"author": "mouafa",
"license": "MIT",
"bugs": {
"url": "https://github.com/mouafa/promx/issues"
},
"homepage": "https://github.com/mouafa/promx#readme",
"devDependencies": {
"@types/jest": "24.0.3",
"@types/jest-diff": "20.0.1",
"@types/node": "11.9.4",
"codecov": "3.6.5",
"coveralls": "3.0.2",
"jest": "23.6.0",
"standard-version": "5.0.0",
"ts-jest": "23.10.5",
"tslint": "5.12.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.3.3"
},
"files": [
"index.ts",
"dist/"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*.(spec|test).ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}