This repository was archived by the owner on Dec 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
79 lines (79 loc) · 2.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ko-component-router",
"version": "5.0.1",
"description": "Component-based routing for KnockoutJS",
"author": "Casey Webb <[email protected]>",
"license": "WTFPL",
"homepage": "https://github.com/Profiscience/ko-component-router",
"bugs": "https://github.com/Profiscience/ko-component-router/issues",
"repository": "Profiscience/ko-component-router",
"main": "ko-component-router.js",
"jsnext:main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/",
"ko-component-router.js"
],
"scripts": {
"build": "taskr build",
"watch": "taskr watch",
"test": "taskr test",
"test:watch": "taskr test:watch",
"prepublish": "yarn build"
},
"keywords": [
"knockoutjs",
"knockout",
"ko",
"component",
"router",
"routing",
"spa",
"framework"
],
"dependencies": {
"core-js": "^2.3.0",
"lodash-es": "^4.14.0",
"path-to-regexp": "^2.0.0",
"tslib": "^1.7.0"
},
"peerDependencies": {
"knockout": "^3.4.0"
},
"devDependencies": {
"@taskr/clear": "^1.1.0",
"@taskr/uglify": "^1.1.0",
"@taskr/watch": "^1.1.0",
"@types/knockout": "^3.4.0",
"@types/lodash-es": "^4.14.4",
"chalk": "^2.0.0",
"eslint": "^4.9.0",
"eslint-config-profiscience": "^2.0.4",
"execa": "^0.8.0",
"jquery": "^3.1.1",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha-reporter": "^2.2.2",
"karma-remap-istanbul": "^0.6.0",
"karma-rollup-preprocessor": "^5.0.1",
"karma-tap": "^3.1.1",
"knockout": "^3.3.0",
"lodash": "^4.17.4",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-builtins": "^2.1.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"tape": "^4.8.0",
"taskr": "^1.1.0",
"taskr-rename": "^0.0.1",
"taskr-rollup": "^0.0.3",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
}
}