-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.07 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sourcebuster",
"version": "1.1.0",
"description": "Get sources of your site's visitors (utm / organic / referral / typein).",
"homepage": "https://github.com/alexfedoseev/sourcebuster-js",
"author": {
"name": "Alex Fedoseev",
"email": "[email protected]",
"url": "http://www.alexfedoseev.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexfedoseev/sourcebuster-js.git"
},
"bugs": {
"url": "https://github.com/alexfedoseev/sourcebuster-js/issues"
},
"keywords": [
"google",
"analytics",
"adwords",
"utm",
"utm_source",
"utm_medium",
"utm_campaign",
"utm_content",
"utm_term",
"organic",
"referral",
"direct"
],
"main": "./dist/sourcebuster.js",
"scripts": {
"start": "NODE_ENV=development http-server -a js.dev -p 8080 & gulp",
"build": "NODE_ENV=production gulp build"
},
"lintOptions": {
"exported": {
"sbjs": true,
"data": true
},
"node": true,
"bitwise": true,
"browser": true,
"curly": false,
"eqeqeq": true,
"forin": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"nonstandard": true,
"strict": false,
"globalstrict": true,
"sub": true,
"supernew": true,
"undef": true,
"unused": true
},
"devDependencies": {
"browserify": "^7.0.0",
"del": "^1.1.0",
"gulp": "^3.8.10",
"gulp-autoprefixer": "^2.0.0",
"gulp-changed": "^1.1.0",
"gulp-derequire": "^2.0.0",
"gulp-header": "^1.2.2",
"gulp-if": "^1.2.5",
"gulp-jshint": "^1.9.0",
"gulp-minify-css": "^0.3.11",
"gulp-rename": "^1.2.0",
"gulp-sass": "^2.2.0",
"gulp-slim": "^0.3.0",
"gulp-sourcemaps": "^1.2.8",
"gulp-uglify": "^1.0.2",
"gulp-util": "^3.0.1",
"map-stream": "0.0.5",
"node-notifier": "^4.0.3",
"require-dir": "^0.1.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.1.1"
}
}