-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "@ewarren/unitedstatesofamerica",
"version": "1.1.1",
"description": "Convert a two–letter state abbreviation to the full state name. Supports US territories.",
"main": "dist/index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"scripts": {
"start": "npm run build",
"prepublishOnly": "npm test && npm run build",
"build": "babel src -d dist",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elizabeth-Warren/unitedstatesofamerica.git"
},
"keywords": [
"geography",
"america"
],
"author": "Joe Kent <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Elizabeth-Warren/unitedstatesofamerica/issues"
},
"homepage": "https://github.com/Elizabeth-Warren/unitedstatesofamerica#readme"
}