-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "marta-js",
"version": "2.0.0",
"description": "An SDK for the MARTA realtime APIs",
"main": "dist/index.js",
"browser": "dist/marta.min.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && webpack",
"clean": "rm -r dist",
"test": "nyc mocha",
"lint": "eslint --ext .js,.ts .",
"lintfix": "eslint --ext .js,.ts --fix ."
},
"author": "yall@codeforatlanta.org",
"license": "MIT",
"mocha": {
"reporter": "dot",
"ui": "bdd",
"recursive": true,
"exit": true,
"require": [
"ts-node/register",
"source-map-support/register"
],
"exclude": [
"test/browser/**"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"extensions": [
"ts",
"js"
],
"reporter": [
"text",
"text-summary"
]
},
"eslintConfig": {
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"mocha": true
}
},
"eslintIgnore": [
"dist"
],
"dependencies": {
"axios": "^0.21.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.10",
"@types/es6-promise": "^3.3.0",
"@types/mocha": "^7.0.2",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"axios-vcr": "^1.0.2",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.0",
"mockdate": "^2.0.5",
"nyc": "^15.0.0",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.16",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"xhr-mock": "^2.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforatlanta/marta-js.git"
},
"bugs": {
"url": "https://github.com/codeforatlanta/marta-js/issues"
},
"homepage": "https://github.com/codeforatlanta/marta-js#readme"
}