-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "http-transaction",
"version": "1.0.0",
"description": "Tool to accomplish sync/async atomic transactions in a distributed system",
"main": "js/index.js",
"scripts": {
"build": "rm -rf js && tsc",
"lint": "tslint --format verbose --config tslint.json ./lib/{,**/}*.ts ./tests/{,**/}*.ts",
"lint:fix": "tslint --format verbose --fix --config tslint.json ./lib/{,**/}*.ts ./tests/{,**/}*.ts",
"test": "mocha tests/**/*.test.ts --no-deprecation --timeout 5000 --compilers ts:ts-node/register --bail",
"coverage": "nyc npm test"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"@types/node": "^10.12.18",
"@types/request": "^2.48.1",
"@types/sinon": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nock": "^10.0.4",
"npm-check-updates": "^2.15.0",
"nyc": "^13.1.0",
"request": "^2.88.0",
"sinon": "^7.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-microsoft-contrib": "^6.0.0",
"typescript": "^3.2.2"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"lib/**/*.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html"
]
},
"prettier": {
"printWidth": 100,
"parser": "flow"
}
}