forked from fsmaia/track-js-data-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "trackjs-api-client",
"version": "1.1.0",
"description": "TrackJS Data API client-library for Node.js",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"homepage": "https://docs.trackjs.com/data-api/",
"repository": {
"type": "git",
"url": "https://github.com/TrackJs/trackjs-api-client-js"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"commit": "git-cz",
"lint": "eslint . --ext=ts",
"prepare": "npm run build"
},
"author": {
"name": "TrackJS",
"email": "[email protected]",
"url": "https://trackjs.com/"
},
"contributors": [
{
"name": "Fernando Maia",
"email": "[email protected]"
}
],
"license": "ISC",
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-plugin-import": "^2.20.2",
"git-cz": "^4.6.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.3"
}
}