forked from pubfood/pubfood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "pubfood",
"version": "0.2.1",
"description": "Header bidding library",
"license": "MIT",
"author": {
"name": "pubfood and other contributors",
"url": "https://github.com/pubfood/pubfood/blob/master/AUTHORS.txt"
},
"main": "./dist/pubfood.js",
"scripts": {
"clean": "npm prune --production && rm -fr build",
"prepare": "npm install && mkdir -p build",
"lint": "gulp lint",
"test": "gulp test",
"build": "npm run prepare && npm run lint && gulp build && npm run test",
"copy_build_to_dist": "npm run build && cp build/pubfood.* dist",
"precut_deploy": "npm run copy_build_to_dist",
"cut_deploy": "git commit . -m 'copy build files to dist' && git tag v`node -e 'console.log(require(\"./package.json\").version)'`",
"postcut_deploy": "npm --no-git-tag-version version patch && git commit . -m 'version bump'",
"start": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/pubfood/pubfood.git"
},
"keywords": [
"prebid",
"header",
"bidding",
"auction",
"advertising",
"async",
"parallel"
],
"bugs": {
"url": "https://github.com/pubfood/pubfood/issues"
},
"homepage": "http://pubfood.org",
"browserify": {
"standalone": "pubfood",
"entries": [
"./src/pubfood.js"
]
},
"devDependencies": {
"browserify": "^12.0.1",
"chai": "^3.3.0",
"del": "^2.0.2",
"eventemitter3": "^1.1.1",
"gulp": "^3.9.0",
"gulp-eslint": "^1.0.0",
"gulp-exit": "0.0.2",
"gulp-header": "^1.7.1",
"gulp-mocha": "^2.1.3",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.4.1",
"sinon": "^1.17.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}