-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@felipelealdefaria/tracker-service",
"license": "MIT",
"version": "0.1.0",
"description": "Tracking service to map user interactions using the Amplitude library",
"author": "Luís Felipe Leal de Faria <[email protected]> (https://github.com/felipelealdefaria)",
"keywords": [
"tracking",
"typescript",
"solid-principles",
"amplitude-analytics",
"clean architecture"
],
"homepage": "https://github.com/felipelealdefaria/tracker-service#readme",
"bugs": {
"url": "https://github.com/felipelealdefaria/tracker-service/issues"
},
"files": [
"dist/tracker"
],
"main": "dist/tracker/index.js",
"types": "dist/tracker/index.d.ts",
"module": "dist/tracker/index.es.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test:ci": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test": "jest --passWithNoTests --no-cache --runInBand",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.14.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.1.0",
"git-commit-msg-linter": "^3.0.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.4",
"lint-staged": "^10.5.2",
"path-browserify": "^1.0.1",
"rollup": "^2.39.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"slugify": "^1.4.6",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.13",
"ttypescript": "^1.5.12",
"typescript": "^4.1.2",
"typescript-transform-paths": "^2.2.3"
},
"dependencies": {
"amplitude-js": "^7.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felipelealdefaria/tracker-service.git"
}
}