forked from millermedeiros/crossroads.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name" : "crossroads",
"description" : "Flexible router which can be used in multiple environments",
"keywords" : ["routes", "event", "observer", "routing", "router"],
"homepage" : "http://millermedeiros.github.com/crossroads.js/",
"version" : "0.12.0",
"author" : {
"name" : "Miller Medeiros",
"url" : "http://blog.millermedeiros.com/"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/millermedeiros/crossroads.js.git"
},
"main" : "dist/crossroads.js",
"bugs" : {
"url" : "https://github.com/millermedeiros/crossroads.js/issues"
},
"licenses" : [
{
"type" : "MIT",
"url" : "http://www.opensource.org/licenses/mit-license.php"
}
],
"dependencies" : {
"signals" : "<2.0"
},
"devDependencies" : {
"uglify-js" : "~1.2.3",
"jasmine-node" : "1.0.x"
},
"scripts" : {
"pretest" : "node build",
"test" : "node node_modules/.bin/jasmine-node dev/tests/spec"
}
}