-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (35 loc) · 905 Bytes
/
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
{
"name": "CoolBeans",
"version": "0.1.0",
"description": "CoolBeans is an Inversion of Control (IOC) / Dependency Injection (DI) library for Node.js. CoolBeans is loosely based on ColdSpring for ColdFusion and Spring IOC for Java.",
"keywords": [
"CoolBeans",
"IOC",
"Inversion of Control",
"DI",
"Dependency Injection",
"Spring",
"factory"
],
"homepage": "https://github.com/dhughes/CoolBeans",
"author": {
"name": "Doug Hughes",
"email": "dhughes@alagad.com",
"url": "http://blog.alagad.com"
},
"license": "(MIT OR Apache-2.0)",
"main": "index",
"engine": "node >= 0.10",
"repository": {
"type": "git",
"url": "https://github.com/dhughes/CoolBeans"
},
"devDependencies": {
"eslint": ">=1",
"mocha": ">=2",
"must-dist": ">=0.12"
},
"scripts": {
"test": "eslint *js && mocha tests/acceptanceTest.js"
}
}