-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "mbta-client",
"version": "1.1.10",
"description": "MBTA API v3 Node.js Client Library",
"main": "index.js",
"scripts": {
"test": "jest --coverage --testPathPattern=__tests__/index.test.js",
"release": "npx helloitsjoe/release-toolkit release",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint --fix-dry-run",
"watch": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloitsjoe/mbta-client.git"
},
"keywords": [
"mbta",
"transit",
"transportation",
"massachusetts",
"boston",
"subway",
"bus"
],
"author": "Joe Boyle",
"license": "MIT",
"bugs": {
"url": "https://github.com/helloitsjoe/mbta-client/issues"
},
"files": [
"/dist",
"/lib",
"!__tests__"
],
"homepage": "https://github.com/helloitsjoe/mbta-client#readme",
"husky": {
"hooks": {
"pre-commit": "npm run build",
"pre-push": "npm t -- --silent"
}
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^1.3.1",
"jest": "^27.0.3",
"prettier": "^2",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.2"
}
}