-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "node-clippercard",
"version": "0.1.3",
"description": "Unofficial Node.js library to retrieve and parse profile and activity data from the Bay Area's Clipper Card system",
"main": "index.js",
"engines": {
"node": ">= 5"
},
"scripts": {
"build": "babel ./src/ -d ./lib/",
"prepublish": "npm run build",
"test": "npm run build && babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"mocha": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abstractvector/node-clippercard.git"
},
"keywords": [
"clipper",
"clippercard",
"bart",
"muni",
"511.org"
],
"author": "Matt Knight",
"license": "MIT",
"bugs": {
"url": "https://github.com/abstractvector/node-clippercard/issues"
},
"homepage": "https://github.com/abstractvector/node-clippercard#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"chai": "*",
"isparta": "^4.0.0",
"mocha": "*",
"nock": "^8.0.0"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"cheerio": "^0.20.0",
"pdf2json": "^1.1.5",
"request": "^2.72.0"
}
}