forked from flatiron/director
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.26 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
52
{
"name": "tarantino",
"description": "A client Side/Server Side Router - A Fork of Director",
"author": "Charlie Robbins <[email protected]>",
"version": "2.1.0",
"license": "MIT",
"maintainers": [
"Kees Kluskens <[email protected]>"
],
"repository": {
"type": "git",
"url": "http://github.com/CodeYellowBV/tarantino.git"
},
"keywords": [
"URL",
"router",
"http",
"cli",
"director",
"client side"
],
"devDependencies": {
"api-easy": "^0.4.0",
"colors": "^1.1.2",
"opn": "^4.0.2",
"opn-cli": "^3.1.0",
"qunitjs": "^2.0.1",
"request": "^2.79.0",
"rollup": "^0.36.4",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-uglify": "^1.0.1",
"uglify-js": "^2.7.4",
"vows": "^0.8.1"
},
"browser": "./build/tarantino.js",
"main": "./lib/tarantino.js",
"engines": {
"node": ">= 0.12.0"
},
"files": [
"lib/",
"build/"
],
"scripts": {
"test": "vows test/server/*/*-test.js --spec",
"build": "rm -f build/** && rollup -c && rollup -c rollup.minify.config.js",
"test-html5": "node ./test/browser/backend/backend.js",
"test-hash": "opn ./test/browser/routes-harness.html",
"preversion": "npm run -s build",
"version": "git add -A build"
}
}