-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.22 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "angles-javascript-client",
"version": "3.1.2",
"description": "This is the javascript client for the Angles Dashboard. It allows you to store your test results.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc",
"start": "node dist/index.js",
"format": "prettier --write \"src/**/*.ts\" \"dist/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnglesHQ/angles-javascript-client.git"
},
"keywords": [
"testing",
"automation",
"dashboard",
"reporting",
"qa",
"angles"
],
"author": "Sergio Neves Barros",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AnglesHQ/angles-javascript-client/issues"
},
"homepage": "https://angleshq.github.io",
"dependencies": {
"axios": "^1.13.2",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"moment": "^2.29.2",
"path": "^0.12.7",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/node": "^14.14.37",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
},
"files": [
"dist/**/*"
]
}