-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 848 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 848 Bytes
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
{
"name": "ivyframework",
"version": "0.6.0",
"description": "Ivy framework for NodeJS",
"main": "index.js",
"keywords": [
"ivyjs",
"framework",
"ivy",
"fast",
"optimized"
],
"repository": {
"type": "git",
"url": "https://github.com/ivyjs/framework.git"
},
"author": "Aleksa Stankovic <lexa931@hotmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"standard": "^9.0.1"
},
"dependencies": {
"colors": "^1.1.2",
"dotenv": "^4.0.0",
"get-body": "^1.0.1",
"http-hash": "^2.0.0"
},
"scripts": {
"test": "mocha test/functional test/unit",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- test/functional test/unit"
}
}