-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.45 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
{
"name": "bby-query-mixer",
"private": true,
"version": "0.0.1",
"description": "A query builder for the Best Buy Product APIs",
"repository": "https://github.com/BestBuyAPIs/bby-query-builder.git",
"license": "MIT",
"devDependencies": {
"bower": "1.3.x",
"grunt": "0.4.x",
"grunt-bower-concat": "^0.4.0",
"grunt-concat-css": "^0.3.1",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-http-server": "1.0.x",
"grunt-karma": "0.9.x",
"grunt-run": "^0.3.0",
"http-server": "0.6.x",
"karma": "0.12",
"karma-cli": "0.0.x",
"karma-coverage": "0.2.x",
"karma-jasmine": "0.1.x",
"karma-junit-reporter": "0.2.x",
"karma-phantomjs-launcher": "0.1.x",
"load-grunt-tasks": "^3.1.0",
"phantomjs": "1.9.x",
"shelljs": "0.2.x"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install && grunt build",
"start": "grunt concurrent",
"pretest": "npm install",
"test": "grunt test",
"test-watch": "karma start karma.conf.js",
"build": "npm install && rm -rf _built && cp -R app _built",
"commit-built": "git add _built -A && git commit -m \"_built files at `date`\" -n > /dev/null 2>&1; exit 0",
"ghpages": "git subtree split --prefix _built/ -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages",
"deploy": "npm run build && npm run commit-built && npm run ghpages"
}
}