-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.52 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
{
"name": "bonanza",
"version": "2.1.4",
"description": "Asynchronous autocomplete with infinite scroll",
"main": "bonanza.js",
"scripts": {
"test": "jshint src/*.js tests/**/*.js && jscs src/*.js tests/**/*.js && browserify tests/*.js | tape-run | tap-spec",
"build": "browserify bonanza.js -d -o dist/bonanza.js && uglifyjs dist/bonanza.js -o dist/bonanza.min.js && cleancss dist/bonanza.css -o dist/bonanza.min.css && browserify demo/index.js -o demo/demo.js && browserify demo/highlight.js -o demo/javascript.js",
"start": "static & watchify demo/index.js -o demo/demo.js",
"preversion": "npm run build && git commit --allow-empty -am 'pre-release commit'",
"postversion": "git push && git push --tags && npm publish && npm run update-gh-pages",
"update-gh-pages": "git checkout gh-pages && git merge @{-1} && git push && git checkout @{-1}"
},
"repository": {
"type": "git",
"url": "https://github.com/nescalante/bonanza"
},
"keywords": [
"autocomplete",
"typeahead"
],
"author": "Nicolas Escalante <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nescalante/bonanza/issues"
},
"homepage": "https://github.com/nescalante/bonanza",
"devDependencies": {
"browserify": "^14.4.0",
"clean-css-cli": "^4.3.0",
"highlight.js": "^9.15.9",
"jscs": "^3.0.7",
"jshint": "^2.10.2",
"node-static": "^0.7.7",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"tape-run": "^3.0.0",
"uglify-js": "^3.6.0",
"watchify": "^3.11.1"
}
}