-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.18 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
{
"name": "marvis-bot",
"version": "1.0.0",
"description": "Marvis Server",
"main": "index.js",
"author": "Matias Lopez",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://www.github.com/imatlopez/marvis-bot"
},
"bugs": {
"url": "https://www.github.com/imatlopez/marvis-bot/issues"
},
"homepage": "http://www.imatlopez.com/",
"private": true,
"dependencies": {
"babel-core": "^6.21.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"bl": "^1.2.0",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"mongodb": "^2.2.16",
"node-wit": "^4.2.0",
"pug": "^2.0.0-beta11",
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"autoprefixer": "^6.6.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-csscomb": "^3.1.0",
"grunt-eslint": "^19.0.0",
"grunt-exec": "^1.0.1",
"grunt-html": "^8.1.0",
"grunt-jekyll": "^0.4.4",
"grunt-jscs": "^3.0.1",
"grunt-postcss": "^0.8.0",
"grunt-sass": "^2.0.0",
"grunt-scss-lint": "^0.5.0",
"grunt-stamp": "^0.3.0",
"load-grunt-tasks": "^3.5.0",
"time-grunt": "^1.3.0",
"babel-istanbul": "^0.12.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-http": "^3.0.0",
"coveralls": "^2.11.15",
"mocha": "^3.2.0",
"mocha-clean": "^1.0.0",
"mocha-lcov-reporter": "^1.2.0",
"mock-http-server": "0.0.4",
"nock": "^9.0.2",
"supertest": "^2.0.1"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"start": "node index.js",
"bot": "node bot.js",
"run": "lite-server",
"test": "babel-istanbul cover ./node_modules/mocha/bin/_mocha --report lcov -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}