forked from tictactrip/luminator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 KB
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
{
"name": "@tictactrip/luminator",
"version": "1.0.3",
"description": "Axios Luminati agent.",
"author": "Dimitri DO BAIRRO <dimitri.dobairro@tictactrip.eu>",
"main": "dist/index.js",
"dependencies": {
"axios": "0.19.0",
"https-proxy-agent": "2.2.2"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/jest": "24.0.16",
"@types/node": "10.14.12",
"jest": "24.8.0",
"prettier": "1.18.2",
"ts-jest": "24.0.2",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "3.5.3"
},
"scripts": {
"clean": "rm -rf coverage dist tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project 'tsconfig.json'",
"lint:fix": "tslint --fix -t stylish --project 'tsconfig.json'",
"pretest": "tslint -t stylish --project 'tsconfig.json'",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublish": "yarn build"
}
}