forked from AmpersandJS/ampersand-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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
49
50
51
{
"name": "ampersand-router",
"description": "Clientside router with fallbacks for browsers that don't support pushState. Mostly lifted from Backbone.js.",
"version": "4.1.0",
"author": "Henrik Joreteg <[email protected]>",
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-router/issues"
},
"dependencies": {
"ampersand-class-extend": "^2.0.0",
"ampersand-events": "^2.0.1",
"ampersand-version": "^1.0.0",
"lodash": "^4.11.1"
},
"devDependencies": {
"jshint": "^2.5.3",
"phantomjs": "^2.1.7",
"precommit-hook": "^3.0.0",
"tape": "^4.4.0",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-router",
"keywords": [
"clientside",
"router",
"history"
],
"license": "MIT",
"main": "ampersand-router.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-router"
},
"scripts": {
"start": "zuul --local -- test/index.js",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js",
"lint": "jshint .",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}