-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
53
54
{
"name": "url-dispatcher",
"version": "0.1.5",
"description": "A URL dispatcher like Backbone.Router.",
"repository": {
"type": "git",
"url": "git+https://github.com/haribote/url-dispatcher.git"
},
"main": "lib/dispatcher.js",
"files": [
"lib"
],
"scripts": {
"start": "npm run watch",
"test": "karma start --single-run",
"watch": "karma start",
"build:node": "babel ./src/dispatcher.js --out-file ./lib/dispatcher.js",
"build:browser": "browserify ./src/main.js -t babelify | uglifyjs > ./dest/dispatcher.min.js",
"build:classic": "browserify -e ./src/compat.js -t [ babelify --loose all ] | uglifyjs > ./dest/dispatcher.compat.min.js",
"build": "npm run build:node && npm run build:browser && npm run build:classic"
},
"keywords": [
"url",
"dispatch",
"dispatcher"
],
"author": "KIMURA Tetsuro",
"license": "MIT",
"bugs": {
"url": "https://github.com/haribote/url-dispatcher/issues"
},
"homepage": "https://github.com/haribote/url-dispatcher#readme",
"devDependencies": {
"babel": "^5.8.21",
"babel-plugin-espower": "^1.0.0",
"babelify": "^6.1.3",
"browserify": "^11.0.1",
"es5-shim": "^4.1.10",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"lodash.isfunction": "^3.0.6",
"mocha": "^2.2.5",
"power-assert": "^0.11.0",
"uglify-js": "^2.4.24",
"watchify": "^3.3.1"
},
"dependencies": {
"es5-shim": "^4.1.10",
"lodash.isfunction": "^3.0.6",
"lodash.isregexp": "^3.0.3"
}
}