-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
61
62
{
"name": "ng-streets",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/index.module.js",
"umd": "dist/index.umd.js",
"homepage": "https://github.com/sudo-kaizen/ng-streets",
"repository": "[email protected]:sudo-kaizen/ng-streets.git",
"description": "A utility library for retrieving Nigerian states, local government areas and street names.",
"license": "MIT",
"engines": {
"node": ">=8.10.0"
},
"author": {
"name": "Orim Dominic Adah",
"url": "https://github.com/sudo-kaizen"
},
"keywords": [
"nigeria",
"streets",
"lgas",
"states",
"local-government"
],
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"eslint": "^6.8.0",
"jest": "^26.6.3",
"np": "^7.2.0",
"prettier": "^2.2.1",
"rollup": "^2.3.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc && rollup -c rollup.config.js",
"cleanup": "rm -rf dist",
"prerelease": "yarn cleanup && yarn prettify && yarn build",
"release": "np",
"test": "jest",
"test:watch": "jest --watch",
"prettify": "prettier --write ./src ./__tests__"
},
"files": [
"dist",
"README.md",
".gitignore",
"package.json",
"yarn.lock"
],
"source": "src/index.ts",
"types": "dist/index.d.ts",
"dependencies": {}
}