-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "idylle",
"version": "2.7.7",
"description": "A micro framework on top of express.",
"main": "index.js",
"scripts": {
"test": "mocha $(find ./lib -name '*.specs.js' ! -ipath '*node_modules*') --timeout 20000 --require ./test",
"coverage": "istanbul cover _mocha $(find ./lib -name '*.specs.js' ! -ipath '*node_modules*') --timeout 20000 --require ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julien-sarazin/idylle.git"
},
"keywords": [
"framework",
"express",
"micro-framework",
"idylle",
"javascript",
"es6"
],
"author": "Julien Sarazin <[email protected]>, Julian Farhi <[email protected]>, Julien Brouzes <[email protected]>, Julien Baczynski <[email protected]>, Christophe Gasquez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loginchinese/idylle/issues"
},
"homepage": "https://github.com/loginchinese/idylle#readme",
"dependencies": {
"bluebird": "3.5.1",
"express": "4.16.3",
"lodash": "4.17.10",
"recursive-readdir": "2.2.1",
"socket.io": "2.1.1"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"expect": "^1.20.2",
"expect.js": "^0.3.1",
"mocha": "^3.3.0",
"mock-fs": "^4.4.1",
"mock-require": "^2.0.2",
"mockfs": "^0.1.5",
"nyc": "^10.3.2",
"recursive-readdir": "^2.2.1",
"sinon": "^2.2.0",
"supertest": "latest"
}
}