forked from chrisdavies/rlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 777 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 777 Bytes
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
{
"name": "rlite-router",
"version": "1.1.3",
"description": "A very tiny, fast client-side router",
"main": "rlite.js",
"directories": {},
"scripts": {
"test": "jasmine-node test/*.spec.js",
"min": "uglifyjs rlite.js --source-map rlite.min.js.map -m -c -o rlite.min.js && echo 'Minified size' && cat rlite.min.js | gzip -9f | wc -c"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisdavies/rlite"
},
"keywords": [
"routing"
],
"author": "Chris Davies <ferociousturtle@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisdavies/rlite/issues"
},
"homepage": "https://github.com/chrisdavies/rlite",
"devDependencies": {
"jasmine-node": "^1.14.5",
"uglify-js": "^2.4.23"
}
}