-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
81 lines (81 loc) · 2.73 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
80
81
{
"name": "riot-router",
"version": "0.9.7",
"description": "A routing solution for Riot",
"main": "dist/router.min.js",
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"extend": "^3.0.0",
"riot": "^3.0.7",
"riot-route": "^3.0.2"
},
"peerDependencies": {
"extend": "^3.0.0",
"riot": "^3.0.7",
"riot-route": "^3.0.2"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.14.0",
"babel-plugin-transform-es2015-classes": "^6.14.0",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-for-of": "^6.8.0",
"babel-plugin-transform-es2015-function-name": "^6.9.0",
"babel-plugin-transform-es2015-literals": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-plugin-transform-es2015-object-super": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.11.4",
"babel-plugin-transform-es2015-shorthand-properties": "^6.8.0",
"babel-plugin-transform-es2015-spread": "^6.3.14",
"babel-plugin-transform-es2015-sticky-regex": "^6.8.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"babel-plugin-transform-es2015-typeof-symbol": "^6.8.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.11.0",
"babel-plugin-transform-regenerator": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"imports-loader": "^0.7.0",
"karma": "^1.2.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mocha": "^3.0.2",
"node-libs-browser": "^2.0.0",
"phantomjs": "^2.1.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1"
},
"scripts": {
"test": "node_modules/.bin/karma start --single-run",
"test:watch": "node_modules/.bin/karma start --auto-watch",
"watch": "webpack --watch",
"build": "COMPRESS=1 webpack",
"start": "webpack-dev-server",
"prepublish": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielmoreira/riot-router.git"
},
"author": "Gabriel Moreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabrielmoreira/riot-router/issues"
},
"homepage": "https://github.com/gabrielmoreira/riot-router#readme",
"files": [
"dist",
"src",
"router.core.js",
"router.js"
]
}