-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "extract-us-city",
"version": "0.0.7",
"description": "A library that extracts City, State and Zip information from text and provides a structured response.",
"main": "dist/index.min.js",
"homepage":"https://cleanshooter.github.io/extract-us-city/",
"repository": {
"type":"git",
"url": "https://github.com/Cleanshooter/extract-us-city.git"
},
"scripts": {
"test": "eslint index.js && node test.js",
"clean": "rm -rf dist && mkdir dist",
"compress": "terser index.js -o dist/index.min.js -c drop_console -m --source-map",
"fe-build": "browserify index.js -t [ babelify --presets [ @babel/preset-env ] ] -t brfs --standalone extractUsCity | terser -c drop_console -m -o dist/extract-us-city.js",
"copy-db": "cp ./city-db.json ./dist/city-db.json",
"copy-to-page": "cp ./dist/extract-us-city.js ./docs/js/extract-us-city.js",
"build": "npm run test && npm run clean && npm run compress && npm run copy-db && npm run fe-build && npm run copy-to-page"
},
"keywords": [
"parse",
"extract",
"us",
"city",
"state",
"zip",
"location",
"nlp",
"natural language processing"
],
"author": "Joe Motacek",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babelify": "^10.0.0",
"brfs": "^2.0.2",
"browserify": "^16.5.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"terser": "^4.2.0",
"tinyify": "^2.5.1"
},
"dependencies": {},
"files": [
"dist"
]
}