-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 1009 Bytes
/
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
{
"name": "angulartics-snowplow",
"version": "0.0.1",
"description": "snowplow plugin for Angulartics",
"keywords": [
"snowplow",
"analytics",
"plugin",
"angular",
"angulartics"
],
"author": "Tim Elfelt <[email protected]> (https://github.com/timelf123)",
"contributors": [
],
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "mkdir -p dist && uglifyjs lib/angulartics-snowplow.js --compress --unused=false --source-map dist/angulartics-snowplow.min.js.map --source-map-root .. --source-map-url ../dist/angulartics-snowplow.min.js.map -o dist/angulartics-snowplow.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/angulartics/angulartics-snowplow"
},
"bugs": {
"url": "https://github.com/angulartics/angulartics-snowplow/issues"
},
"license": "MIT",
"peerDependencies": {
"angulartics": "~0.20"
},
"devDependencies": {
"uglify-js": "^2.4.23"
}
}