-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ts-tracking-number",
"version": "1.0.17",
"description": "Detect and validate tracking numbers for USPS, UPS, FedEx, and other major couriers.",
"keywords": [
"tracking number",
"track package",
"usps",
"ups",
"fedex",
"amazon",
"dhl",
"ontrac",
"s10"
],
"main": "./dist/util.js",
"module": "./dist/util.js",
"types": "./dist/util.d.ts",
"scripts": {
"build": "rm -rf ./dist && yarn test && tsc -p ./tsconfig.json",
"lint": "yarn eslint --cache --ext .ts src/",
"test": "mocha --exit -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjbrooksjr/ts-tracking-number.git"
},
"author": {
"name": "Rich Brooks",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/rjbrooksjr/ts-tracking-number/issues"
},
"homepage": "https://github.com/rjbrooksjr/ts-tracking-number#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/ramda": "^0.27.11",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-functional": "^3.0.1",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.2",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"ramda": "^0.27.0"
}
}