-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 864 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
{
"name": "usa-state-legislatures",
"version": "1.0.4",
"description": "This package will return various information about a given state legislature- including number of members, term length, and party division.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./src/*.js ",
"lintfix": "eslint ./src/*.js --fix",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info"
},
"author": "Christine Poydence",
"respository": "https://github.com/christinepoydence/usa-state-legislatures.git",
"license": "ISC",
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.13.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.6.3"
},
"dependencies": {
"usa-state-validator": "^1.0.2"
},
"keywords": [
"usa",
"state",
"legislature"
]
}