-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·40 lines (40 loc) · 1.31 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
35
36
37
38
39
40
{
"name": "angulartics-newrelic-insights",
"version": "0.1.0",
"description": "New Relic Insights plugin for Angulartics",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "mkdir -p dist && uglifyjs lib/angulartics-newrelic-insights.js --compress --source-map dist/angulartics-newrelic-insights.min.js.map --source-map-root .. --source-map-url ../dist/angulartics-newrelic-insights.min.js.map -o dist/angulartics-newrelic-insights.min.js",
"test": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prestonvanloon/angulartics-newrelic-insights.git"
},
"keywords": [
"angular",
"angulartics",
"plugin",
"new",
"relic",
"insights"
],
"author": "Preston Van Loon <[email protected]> (https://github.com/prestonvanloon)",
"contributors": [
"Luis Farzati <[email protected]> (https://github.com/luisfarzati)",
"Jakub Hampl (http://gampleman.eu)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/prestonvanloon/angulartics-newrelic-insights/issues"
},
"homepage": "https://github.com/prestonvanloon/angulartics-newrelic-insights#readme",
"peerDependencies": {
"angulartics": "~1.0.0"
},
"devDependencies": {
"uglify-js": "^2.6.2"
}
}