UNPKG

2.12 kBJSONView Raw
1{
2 "name": "kettle",
3 "description": "Declarative IoC-based framework for HTTP and WebSockets servers on node.js based on express and ws",
4 "version": "1.8.1",
5 "author": {
6 "name": "The Fluid Project"
7 },
8 "bugs": {
9 "url": "http://issues.fluidproject.org/browse/KETTLE"
10 },
11 "scripts": {
12 "pretest": "node node_modules/rimraf/bin.js coverage/*",
13 "lint": "node node_modules/grunt/bin/grunt lint",
14 "test": "node node_modules/nyc/bin/nyc.js --reporter=html node tests/all-tests.js",
15 "lint:vagrant": "vagrant ssh -c 'cd /home/vagrant/kettle; $(npm bin)/grunt lint'",
16 "test:vagrant": "vagrant ssh -c 'cd /home/vagrant/kettle; npm test'"
17 },
18 "homepage": "http://wiki.fluidproject.org/display/fluid/Kettle",
19 "dependencies": {
20 "express": "4.16.3",
21 "body-parser": "1.18.3",
22 "cookie-parser": "1.4.3",
23 "express-session": "1.15.6",
24 "serve-static": "1.13.2",
25 "ws": "6.0.0",
26 "infusion": "3.0.0-dev.20180222T160835Z.6e1311a",
27 "jsonlint": "1.6.3",
28 "fluid-resolve": "1.3.0",
29 "path-to-regexp": "1.7.0",
30 "multer": "1.4.0",
31 "form-data": "2.3.2",
32 "json5": "2.1.0"
33 },
34 "devDependencies": {
35 "eslint-config-fluid": "1.3.0",
36 "gpii-grunt-lint-all": "1.0.5",
37 "gpii-express": "1.0.14",
38 "gpii-pouchdb": "1.0.12",
39 "grunt": "1.0.3",
40 "nyc": "13.0.1",
41 "grunt-shell": "2.1.0",
42 "node-jqunit": "1.1.8",
43 "rimraf": "2.6.2"
44 },
45 "license": "BSD-3-Clause",
46 "keywords": [
47 "infusion",
48 "framework",
49 "application",
50 "fluid",
51 "IoC",
52 "express",
53 "Inversion of Control",
54 "MVC",
55 "evented"
56 ],
57 "repository": {
58 "type": "git",
59 "url": "https://github.com/fluid-project/kettle"
60 },
61 "main": "./kettle.js",
62 "engines": {
63 "node": ">=4.5.0"
64 },
65 "nyc": {
66 "exclude": [
67 "/node_modules/**"
68 ],
69 "temp-directory": "./coverage/.nyc_output"
70 }
71}