-
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) · 852 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 852 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": "noder.io",
"version": "1.2.0",
"description": "A lightweight IoC container to build the core of a scalable and modular API (inspired by Angular and Pimple). No dependencies, works on Node.js and in the browser (only 2kb minified gzipped).",
"main": "src/index.js",
"keywords": [
"ioc",
"collection",
"noder",
"toolkit",
"framework",
"lib",
"node",
"plugin"
],
"author": {
"name": "Nicolas Tallefourtane",
"url": "http://nicolab.net"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/noder-io/noder.io/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git@github.com:noder-io/noder.io.git"
},
"scripts": {
"test": "mocha test"
},
"devDependencies": {
"mocha": "^2.0.1",
"unit.js": ">= 1.0.0 < 2.0.0"
}
}