-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "pepper-mint",
"version": "2.2.4",
"description": "An unofficial API for mint.com",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p .",
"check": "npm run lint && npm run build && npm run test",
"lint": "eslint -c .eslintrc.js src/**.ts",
"prepublishOnly": "npm run check",
"test": "mocha -r ts-node/register test/**/*-test.ts"
},
"repository": {
"type": "git",
"url": "http://github.com/dhleong/pepper-mint"
},
"keywords": [
"mint.com",
"mint",
"api"
],
"author": "Daniel Leong <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dhleong/pepper-mint/issues"
},
"homepage": "https://github.com/dhleong/pepper-mint",
"dependencies": {
"chromedriver": "^88.0.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"selenium-webdriver": "^3.6.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.31",
"@types/request": "^2.48.4",
"@types/request-promise-native": "^1.0.17",
"@types/selenium-webdriver": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prefer-arrow": "^1.1.7",
"mocha": "^7.1.1",
"tslint": "^6.1.0",
"typescript": "^3.7.5"
}
}