-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "mothership-analytics",
"description": "Mothership analytics library for simple website experiments",
"keywords": [
"mothership",
"error",
"tracking",
"javascript",
"client"
],
"license": "BSD-3-Clause",
"version": "1.0.8",
"repository": {
"type": "git",
"url": "https://github.com/MothershipApp/analytics"
},
"private": false,
"main": "plugin-dist/mothership-analytics.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode development --watch",
"serve": "webpack-dev-server --open -entry=./index.html --MOTHERSHIP_URL=http://mothership.test",
"build": "webpack --entry=./src/main-library.ts --output=./library-dist/mothership-analytics.lib.js --mode production --MOTHERSHIP_URL=http://mothership.test",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"axios": "^0.19.0",
"stacktrace-js": "^2.0.1"
},
"devDependencies": {
"@types/node": "^12.12.11",
"@types/webpack-env": "^1.14.1",
"awesome-typescript-loader": "^5.2.1",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"author": "Gary Williams - LBM.co"
}