-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"name": "slim-router",
"version": "1.1.0",
"description": "Easy routing for your ajax Web applications",
"main": "dist/router.js",
"jsnext:main": "src/router.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node watch",
"build": "browserify src/router.js -s Router -t babelify -o dist/router.js && uglifyjs dist/router.js -cmo dist/router.min.js",
"test": "./node_modules/.bin/karma start --single-run --no-auto-watch"
},
"repository": {
"type": "git",
"url": "[email protected]:haithembelhaj/slim-router.git"
},
"keywords": [
"router",
"browser",
"history.js"
],
"author": "Haithem Bel Haj <[email protected]> (http://haithembelhaj.github.io)",
"license": "ISC",
"bugs": {
"url": "[email protected]:haithembelhaj/slim-router/issues"
},
"homepage": "[email protected]:haithembelhaj/slim-router#readme",
"devDependencies": {
"babelify": "^6.4.0",
"browserify": "^11.2.0",
"chai": "^3.4.0",
"karma": "^0.13.14",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.1",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon": "^1.0.4",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"sinon": "^1.17.2",
"uglify-js": "^2.5.0"
},
"dependencies": {
"history.js": "git+https://github.com/browserstate/history.js.git"
}
}