-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.19 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
{
"name": "snowblind",
"version": "0.0.1",
"description": "Snowblind",
"main": "index.js",
"repository": "https://github.com/SiCurious/snowblind",
"license": "GPL-3.0",
"scripts": {
"build": "node ./node_modules/gulp/bin/gulp.js assets",
"start": "node --harmony ./index",
"test": "node ./bin/test",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- spec/**/*-spec.js -u exports -R spec --compilers js:babel/register --require spec/spec-helpers/nodeSupport",
"coveralls": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- spec/**/*-spec.js -u exports -R spec --compilers js:babel/register --require spec/spec-helpers/nodeSupport && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": "Simon Adcock (@SiAdcock)",
"devDependencies": {
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.4",
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.5.1",
"express": "^4.13.3",
"glob": "^5.0.14",
"istanbul": "^0.3.19",
"mocha": "^2.2.5",
"mockery": "^1.4.0",
"node-libs-browser": "^0.5.2",
"sinon": "^1.15.4",
"yargs": "^3.14.0"
},
"dependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-loader": "^5.3.0",
"babel-runtime": "^5.7.0",
"bunyan": "^1.4.0",
"es6-promise": "^2.3.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-eslint": "^0.15.0",
"gulp-livereload": "^3.8.0",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-sass": "^2.0.4",
"gulp-sourcemaps": "^1.5.2",
"gulp-util": "^3.0.6",
"isomorphic-fetch": "^2.1.1",
"jsx-loader": "^0.13.2",
"koa": "^0.21.0",
"koa-bodyparser": "^2.0.0",
"koa-compose": "^2.3.0",
"koa-favicon": "^1.2.0",
"koa-mount": "^1.3.0",
"koa-router": "^5.1.2",
"koa-static": "^1.4.9",
"lodash": "^3.10.0",
"nodemon": "^1.3.7",
"react": "^0.13.3",
"react-hot-loader": "^1.2.7",
"react-redux": "^1.0.1",
"redux": "^1.0.1",
"redux-actions": "^0.7.0",
"redux-promise": "^0.5.0",
"shelljs": "^0.5.1",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0",
"webpack-stream": "^2.1.0"
}
}