-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "alphanum-compare",
"version": "1.0.0",
"description": "Compare alphanumeric strings",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/tsekityam/alphanum-compare.git",
"author": "Tse Kit Yam <[email protected]>",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@tsconfig/recommended": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"scripts": {
"prepack": "tsc",
"lint": "eslint --ignore-path '.gitignore' '**/*.ts'",
"format": "prettier --ignore-unknown --ignore-path '.gitignore' --write '**/*'",
"test": "nyc mocha",
"posttest": "nyc report --reporter=text-lcov | codecov --pipe"
},
"files": [
"dist"
],
"keywords": [
"alphanumeric",
"compare"
]
}