-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1003 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1003 Bytes
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
{
"name": "crds-analytics",
"version": "1.0.5",
"description": "Analytics abstraction allowing for unified consumption of analytics.",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && webpack",
"build:dev": "npm run build && http-server ./",
"dev": "http-server ./",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crdschurch/crds-analytics.git"
},
"keywords": [
"crossroads"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/crdschurch/crds-analytics/issues"
},
"homepage": "https://github.com/crdschurch/crds-analytics#readme",
"devDependencies": {
"@types/node": "^16.11.0",
"http-server": "^13.0.2",
"jest": "^26.6.3",
"tslint": "^6.1.3",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
},
"dependencies": {
"@analytics/segment": "^1.1.1",
"analytics": "^0.7.15"
}
}