-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "@tselect/status-code",
"scripts": {
"test": "mocha -r ts-node/register '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"
},
"license": "MIT",
"version": "1.0.2",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"description": "HTTP status codes utility.",
"repository": {
"type": "git",
"url": "git+https://github.com/tselect-npm/status-code.git"
},
"keywords": [
"tselect",
"http",
"rest",
"statuscode",
"code",
"typescript",
"enum"
],
"author": "Sylvain Estevez",
"bugs": {
"url": "https://github.com/tselect-npm/status-code"
},
"homepage": "https://github.com/tselect-npm/status-code#readme",
"devDependencies": {
"@types/chai": "^4.3.9",
"@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",
"typescript": "^4.9.5"
}
}