-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
60 lines (60 loc) · 1.9 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
57
58
59
60
{
"name": "malaysia-postcodes",
"version": "2.3.1",
"description": "List of Malaysia Postcodes with City and State (JSON)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "webpack-dev-server --mode development",
"build": "webpack --mode production --node-env production",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"lint": "eslint --cache --ext .ts src/**.ts __tests__/**.ts",
"format": "prettier --write --cache \"**/*.[tj]s?(x)\"",
"format-check": "prettier --check --cache \"**/*.[tj]s?(x)\"",
"check-types": "tsc --pretty --noEmit",
"version": "npm run build && npm run test && node scripts/update-cdn-versions.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/AsyrafHussin/npm-malaysia-postcodes.git"
},
"keywords": [
"malaysia",
"postcodes",
"malaysia postcodes",
"asyraf hussin"
],
"author": "Asyraf Hussin",
"license": "ISC",
"bugs": {
"url": "https://github.com/AsyrafHussin/npm-malaysia-postcodes/issues"
},
"homepage": "https://github.com/AsyrafHussin/npm-malaysia-postcodes#readme",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.5.8",
"@types/terser-webpack-plugin": "^5.2.0",
"@types/webpack": "^5.28.2",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.7",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"ts-node": "^10.9.1"
}
}