forked from fluid-project/infusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "infusion",
"description": "Infusion is an application framework for developing flexible stuff with JavaScript",
"version": "3.0.0",
"author": "Fluid Project",
"bugs": "http://issues.fluidproject.org/browse/FLUID",
"homepage": "http://www.fluidproject.org/",
"dependencies": {
"fluid-resolve": "1.2.0"
},
"license": "(BSD-3-Clause OR ECL-2.0)",
"keywords": [
"infusion",
"framework",
"application",
"fluid",
"IoC",
"Inversion of Control",
"MVC",
"evented"
],
"repository": "git://github.com/fluid-project/infusion.git",
"main": "./src/module/fluid.js",
"scripts": {
"prepublish": "grunt buildDists",
"test": "node tests/node-tests/basic-node-tests.js"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"grunt": "1.0.1",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-compress": "1.3.0",
"grunt-contrib-stylus": "1.2.0",
"grunt-contrib-watch": "1.0.0",
"grunt-modulefiles": "0.3.1",
"lodash": "4.13.1",
"eslint-config-fluid": "1.0.0",
"fluid-grunt-eslint": "18.1.2",
"grunt-jsonlint": "1.0.4",
"grunt-shell": "1.3.0"
}
}