-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "@tselect/http-method",
"version": "1.0.0",
"description": "HTTP methods related enums and utilities.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register -r test/setup.ts --recursive test/**/*.test.ts",
"cov": "nyc npm test",
"lint": "tslint --project ./",
"fix": "tslint --fix --project ./",
"compile": "tsc",
"build": "rm -rf dist && mkdir dist && tsc --noEmit false",
"prepare": "tsc",
"prepublishOnly": "npm run lint && npm run cov && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tselect-npm/http-method.git"
},
"author": "Sylvain Estevez",
"license": "MIT",
"bugs": {
"url": "https://github.com/tselect-npm/http-method/issues"
},
"homepage": "https://github.com/tselect-npm/http-method#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/lodash": "^4.14.200",
"@types/mocha": "5.2.3",
"@types/node": "12.7.0",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nyc": "15.1.0",
"ts-node": "^9.1.1",
"tslint": "6.1.3",
"typedoc": "^0.25.2",
"typescript": "^4.9.5"
}
}