-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "paychex-tracking",
"version": "1.1.1",
"description": "Provides various tracking metrics for JavaScript applications.",
"main": "index.js",
"scripts": {
"doc": "./node_modules/.bin/jsdoc -d build/doc -r -P ./package.json src",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run",
"prebuild": "npm install",
"build:dev": "r.js.cmd -o optimize=none baseUrl=src name=../node_modules/almond/almond include=Tracking out=build/tracking.js wrap.startFile=wrap.start.txt wrap.endFile=wrap.end.txt",
"build:prod": "r.js.cmd -o baseUrl=src name=../node_modules/almond/almond include=Tracking out=build/tracking.min.js wrap.startFile=wrap.start.txt wrap.endFile=wrap.end.txt",
"build": "npm run-script build:dev && npm run-script build:prod"
},
"repository": {
"type": "git",
"url": "git://github.com/paychex/tracking.git"
},
"keywords": [
"tracking",
"analytics",
"javascript",
"event",
"timer",
"mark",
"measure",
"dimension",
"metric",
"context"
],
"author": "Paychex, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paychex/tracking/issues"
},
"homepage": "https://github.com/paychex/tracking",
"dependencies": {
"requirejs": "^2.1.19"
},
"devDependencies": {
"almond": "^0.3.1",
"jsdoc": "^3.3.0-alpha10",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-cli": "^0.1.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-requirejs": "^0.2.2",
"karma-story-reporter": "^0.3.1",
"phantomjs": "^1.9.18"
},
"private": false
}