-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.02 KB
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
{
"bin": "cli/bin.js",
"dependencies": {
"react-router": "^2.0.0"
},
"description": "Universal React Router",
"devDependencies": {
"babel-core": "^6.5.1",
"babel-eslint": "5.0.0-beta10",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-tape-runner": "^2.0.0",
"eslint": "^1.10.3",
"eslint-config-ninja": "^1.1.5",
"eslint-plugin-react": "^3.16.1",
"express": "^4.13.4",
"hapi": "^13.0.0",
"hapi-webpack-plugin": "^1.3.0",
"isomorphic-fetch": "^2.2.1",
"node-dev": "^3.0.0",
"radium": "^0.16.6",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-thunk": "^1.0.3",
"shigoto": "^1.0.4",
"supertest": "^1.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"webpack": "^1.12.13",
"webpack-dev-middleware": "^1.5.1"
},
"license": "Apache-2.0",
"main": "build",
"name": "ruto",
"repository": {
"type": "git",
"url": "git://github.com/ninja/ruto"
},
"scripts": {
"build": "node cli/build",
"lint": "eslint .",
"ls": "npm ls --depth 0",
"outdated": "npm outdated --depth 0",
"prebuild": "npm test",
"prepublish": "npm run build",
"pretest": "npm run lint",
"start": "NODE_PATH=src node-dev examples/server --server=hapi",
"start:express": "npm run start --server=express",
"start:hapi": "npm run start --server=hapi",
"test": "NODE_PATH=src babel-tape-runner test/**/*.js | tap-spec"
},
"scriptsInfo": {
"build": "Transpiles source files to ECMAScript 5 before publishing.",
"lint": "Verifies source code meets syntax/style rules.",
"ls": "Lists dependencies (top-level).",
"outdated": "Lists outdated dependencies (top-level).",
"start": "Starts hapi server with examples.",
"start:express": "Starts express server with examples.",
"start:hapi": "Starts hapi server with examples.",
"test": "Runs all tests."
},
"version": "4.0.0"
}