-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
46 lines (46 loc) · 1.13 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": "grapnel",
"version": "0.7.6",
"description": "The first (and smallest!) JavaScript Router with PushState, Middleware, and Named Parameter support",
"main": "dist/grapnel.js",
"unpkg": "dist/grapnel.js",
"scripts": {
"build": "npm run prettier && bin/build",
"serve-tests": "pushd ./test; python -m SimpleHTTPServer 8997; popd",
"prettier": "./node_modules/prettier/bin-prettier.js --config .prettierrc ./dist/**/*.js ./test/main.js --write"
},
"repository": {
"type": "git",
"url": "https://github.com/baseprime/grapnel.git"
},
"keywords": [
"grapnel",
"route",
"routing",
"router",
"hash",
"anchor",
"express",
"server",
"tiny",
"require",
"named parameters",
"middleware",
"backbone",
"routie",
"pushState",
"api"
],
"author": "Greg Sabia Tucker <greg@narrowlabs.com>",
"link": "http://basepri.me",
"license": "MIT",
"bugs": {
"url": "https://github.com/baseprime/grapnel/issues"
},
"homepage": "http://grapnel.js.org",
"devDependencies": {
"prettier": "^1.15.3",
"uglify-js": "^3.11.5"
},
"dependencies": {}
}