-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 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": "knockout-router",
"version": "0.1.0",
"description": "Simple router designed for usage with Knockout JS components",
"main": "dist/knockout-router.js",
"typings": "dist/knockout-router.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && rollup -c rollup.config.min.js",
"build-dev": "rollup -c -w",
"prepublish": "typings install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnaeus/knockout-router.git"
},
"keywords": [
"knockoutjs",
"knockout",
"ko",
"component",
"router",
"routing",
"spa"
],
"author": "Dmitry Panyushkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/gnaeus/knockout-router/issues"
},
"homepage": "https://github.com/gnaeus/knockout-router#readme",
"devDependencies": {
"deepmerge": "^0.2.10",
"knockout": "^3.4.0",
"rollup": "^0.34.5",
"rollup-plugin-commonjs": "^3.3.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-typescript": "^0.7.7",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"tslint": "^3.15.1",
"typescript": "^1.8.10",
"typings": "^1.3.2"
},
"dependencies": {
"path-to-regexp": "^1.5.3",
"qs": "^6.2.1"
},
"peerDependencies": {
"knockout": "^3.4.0"
}
}