-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "opaler",
"version": "2.0.0",
"description": "Request your opal card data from opal.com.au.",
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tbasse/opaler.git"
},
"engines": {
"node": ">= 8"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc",
"types": "tsc --noEmit",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jestconfig.json --watch --notify",
"lint": "yarn lint:ts && yarn lint:prettier",
"lint:fix": "yarn lint:js:fix && yarn lint:ts:fix && yarn lint:prettier:fix",
"lint:ts": "tslint -p tsconfig.json -t stylish 'src/**/*.ts'",
"lint:ts:fix": "yarn lint:ts -- --fix",
"lint:prettier": "prettier --list-different 'src/**/*.ts'",
"lint:prettier:fix": "prettier --write 'src/**/*.ts'"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"request": "^2.88.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.10",
"@types/jest": "^25.2.1",
"@types/request": "^2.48.1",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.2"
},
"engine": {
"node": "10.0.0"
}
}