forked from barbajs/barba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "barba.js",
"version": "0.0.9",
"description": "Barba.js it's a small, flexible and dependency free library that helps you creating fluid and smooth transition between your website's pages.",
"homepage": "http://barbajs.org",
"keywords": [
"pjax",
"transitions",
"navigation"
],
"main": "dist/barba.js",
"scripts": {
"test": "./node_modules/.bin/karma start --single-run --browsers Firefox",
"generatedoc": "jsdoc src -r -d docs --configure jsdoc.json --verbose",
"dev": "webpack-dev-server --inline --hot",
"js": "webpack",
"minify": "uglifyjs --screw-ie8 --mangle --compress -o ./dist/barba.min.js ./dist/barba.js",
"build": "npm run js && npm run minify",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/luruke/barba.js"
},
"bugs": {
"url": "https://github.com/luruke/barba.js/issues"
},
"author": "Luigi De Rosa <[email protected]>",
"license": "MIT",
"devDependencies": {
"istanbul-instrumenter-loader": "^0.2.0",
"jaguarjs-jsdoc": "0.0.1",
"jasmine-core": "^2.4.1",
"jsdoc": "git+https://github.com/jsdoc3/jsdoc.git",
"karma": "^0.13.22",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-webpack": "^1.7.0",
"promise-polyfill": "^5.2.1",
"uglify-js": "^2.6.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.12.1"
}
}