-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "ractivejs-router",
"version": "0.1.2",
"description": "A Simple Router for Ractive.js applications built on top of Crossroads.js and Hasher",
"author": {
"name": "Fayçal Tirich"
},
"main": "dist/ractive-router.umd.js",
"scripts": {
"build": "rm -rf dist && npm run build:umd && npm run build:es",
"build:umd": "rollup -c -f umd -o dist/ractive-router.umd.js",
"build:es": "rollup -c -f es6 -o dist/ractive-router.es.js",
"prepublish": "npm run build",
"test": "bash e2e.sh",
"test-headless": "bash e2e.headless.sh",
"demo": "webpack-dev-server --inline --hot --config demo/webpack.config.js --content-base demo --history-api-fallback --host 0.0.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fayway/ractive-router.git"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"chromedriver": "^2.21.2",
"nightwatch": "^0.8.18",
"phantomjs": "^2.1.3",
"ractive": "^0.7.3",
"rollup": "^0.25.4",
"rollup-plugin-babel": "^2.4.0",
"selenium-server": "2.52.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"crossroads": "^0.12.2",
"hasher": "^1.2.0"
},
"keywords": [
"ractive",
"router",
"crossroads",
"hasher",
"es2015"
],
"license": "MIT"
}