-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.06 KB
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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "http-moment",
"description": "http(s).Agent that allows you to send multiple requests at exactly one moment",
"license": "MIT",
"author": {
"name": "Alex Owl",
"email": "AlexOwl@protonmail.com",
"url": "https://AlexOwl.github.com/"
},
"homepage": "https://github.com/AlexOwl/http-moment#readme",
"repository": "AlexOwl/http-moment",
"bugs": {
"email": "AlexOwl@protonmail.com",
"url": "https://github.com/AlexOwl/http-moment/issues"
},
"version": "1.1.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"clean": "rimraf lib",
"format": "run-s format:* -l",
"format:package": "prettier-package-json --write --expand-users",
"format:prettier": "prettier-tslint fix",
"format:tslint": "tslint -p tsconfig.json --fix",
"prepare": "run-s format test clean build",
"start": "node lib",
"start:dev": "node --inspect -r ./node_modules/ts-node/register src",
"start:dev:watch": "nodemon --exec npm run start:dev",
"test": "run-s test:* -ns",
"test:jest": "jest --passWithNoTests",
"test:tsc": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.0",
"@types/node": "latest",
"jest": "24.0.0",
"nodemon": "latest",
"npm-run-all": "latest",
"prettier": "latest",
"prettier-package-json": "latest",
"prettier-tslint": "latest",
"rimraf": "latest",
"ts-jest": "24.0.0",
"ts-node": "latest",
"tslint": "latest",
"tslint-config-prettier": "latest",
"tslint-config-standard": "latest",
"typescript": "latest"
},
"keywords": [
"agent",
"byte",
"concurrent",
"http",
"https",
"lastbyte",
"moment",
"request",
"requests",
"spam"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**",
"!**/@types/**",
"!**/index.ts"
],
"coverageReporters": [
"text"
],
"verbose": true,
"bail": true
}
}