-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.68 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.68 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@status/codes",
"version": "0.0.0-development",
"description": "A collection of status code enums",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.mjs",
"types": "dist/types.d.ts",
"scripts": {
"test": "cross-env TS_NODE_PROJECT='./test/tsconfig.json' mocha",
"precompile": "rimraf dist",
"compile": "tsc",
"prebuild": "rimraf dist",
"build": "parcel build",
"coverage:check": "nyc check-coverage",
"precoverage:report": "npm run coverage:test",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov",
"coverage:post": "codecov",
"coverage:test": "nyc mocha",
"nyc": "nyc",
"precommit": "npm run coverage:test && npm run coverage:check",
"prepush": "npm run coverage:test",
"publish": "npx semantic-release",
"semantic-release": "semantic-release",
"semantic:cli": "semantic-release-cli",
"check": "npm-check -u",
"lint": "eslint ./src/* --report-unused-disable-directives",
"prepack": "npm run build"
},
"exports": {
"import": "./dist/module.mjs",
"require": "./dist/main.js",
"types": "./dist/types.d.ts"
},
"keywords": [
"apache",
"auth0",
"cloudflare",
"codes",
"ftp",
"http",
"iis",
"mocha",
"mongodb",
"nginx",
"node",
"status",
"irc",
"postgres"
],
"author": "jfrazx",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@parcel/bundler-library": "^2.15.4",
"@parcel/packager-ts": "^2.13.2",
"@parcel/transformer-typescript-types": "^2.13.2",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"chai": "^4.4.1",
"codecov": "^3.8.3",
"commitizen": "^4.3.1",
"cross-env": "^10.0.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.1.7",
"mocha": "^11.0.0",
"npm-check": "^6.0.1",
"nyc": "^18.0.0",
"parcel": "^2.13.2",
"rimraf": "^6.0.1",
"semantic-release": "^25.0.0",
"semantic-release-cli": "^5.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/jfrazx/status-codes.git"
},
"mocha": {
"recursive": true,
"spec": "test/*.ts",
"reporter": "spec",
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
]
}
}