-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 945 Bytes
/
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
{
"name": "address-encoder",
"version": "1.0.0",
"description": "Encode and decode address format",
"main": "index.js",
"scripts": {
"test": "jest --config jest.config.js",
"lint": "eslint .",
"prettier": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maasglobal/address-encoder.git"
},
"author": "James Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/maasglobal/address-encoder/issues"
},
"homepage": "https://github.com/maasglobal/address-encoder#readme",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-maasglobal": "^4.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.4.7",
"prettier": "^2.5.1"
}
}