-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
59
{
"name": "analytics-event",
"version": "1.1.0",
"description": "Utility for working with analytics events server-side and in the browser.",
"main": "lib/index.js",
"module": "lib/index.es.js",
"files": [
"dist/",
"lib/"
],
"scripts": {
"clean": "rm -rf lib dist",
"build": "rollup --config rollup.config.js",
"build:production": "NODE_ENV=production rollup --config rollup.config.js",
"watch": "rollup --config rollup.config.js --watch",
"test": "ava",
"patch": "npm run pt && npm version patch && npm run p",
"minor": "npm run pt && npm version minor && npm run p",
"major": "npm run pt && npm version major && npm run p",
"pt": "npm run build:production && npm test",
"t": "npm run build && npm test",
"prepare": "npm run pt",
"p": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usermirror/analytics-event.git"
},
"keywords": [
"analytics event",
"analytics",
"event"
],
"author": "UserMirror, Inc. <open@usermirror.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/usermirror/analytics-event/issues"
},
"homepage": "https://github.com/usermirror/analytics-event#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.52",
"@babel/core": "^7.0.0-beta.52",
"ava": "^0.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"lodash": "^4.17.10",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0"
},
"dependencies": {
"analytics-id": "^1.0.3"
}
}