-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 1.02 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
{
"name": "angulartics-woopra",
"version": "1.0.0",
"description": "Woopra plugin for Angulartics",
"keywords": [
"woopra",
"analytics",
"plugin",
"angular",
"angulartics"
],
"author": "Luis Farzati <[email protected]> (https://github.com/luisfarzati)",
"contributors": "https://github.com/angulartics/angulartics-woopra/graphs/contributors",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "mkdir -p dist && uglifyjs lib/angulartics-woopra.js --compress --source-map dist/angulartics-woopra.min.js.map --source-map-root .. --source-map-url ../dist/angulartics-woopra.min.js.map -o dist/angulartics-woopra.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/angulartics/angulartics-woopra"
},
"bugs": {
"url": "https://github.com/angulartics/angulartics-woopra/issues"
},
"license": "MIT",
"dependencies": {
"angulartics": "~0.20"
},
"devDependencies": {
"uglify-js": "^2.4.23"
}
}