-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.1 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
{
"name": "coffee-sweetener",
"version": "0.0.3",
"description": "Small utility component that you can use in your applications to ease the management of dependencies between objects. The idea is simple, you have a factory object (we'll call this the *injector*) where you define some mappings. Each mapping has a unique id that you define. From different modules you can query the *injector* to give you a new instance of a specific mapping. Within classes you can define depenecies which will be satisfied on creation of a new instance of that class.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jasmine-node --test-dir test --coffee",
"prepublish": "coffee -bco lib src"
},
"devDependencies": {
"jasmine-node": ">=1.4.0",
"coffee-script": ">=1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vizio360/coffee-sweetener"
},
"author": "Simone Vicentini (@vizio360)",
"license": "MIT",
"readmeFilename": "README.md",
"keywords": [
"coffeescript",
"ioc",
"dependency injection"
]
}