-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
48
49
50
51
52
{
"name": "eye-oh-see",
"version": "0.5.5",
"author": "Zach Bray <zachbray@googlemail.com>",
"description": "An inversion of control container for JavaScript and TypeScript applications that uses decorators for registration.",
"repository": {
"type": "git",
"url": "https://github.com/ZachBray/eye-oh-see.git"
},
"bugs": {
"url": "https://github.com/ZachBray/eye-oh-see/issues"
},
"keywords": [
"ioc",
"di",
"javascript",
"typescript",
"node",
"dependency injection",
"constructor injection",
"dependency inversion",
"inversion of control",
"inversion of control container"
],
"main": "dist/src/Index.js",
"typings": "dist/src/Index.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint ./**/*.ts",
"pretest": "npm run lint",
"test": "mocha --require ts-node/register test/**/*.ts --recursive",
"test:watch": "npm run test -- --watch",
"prebuild": "npm run clean && npm run test",
"justbuild": "tsc -p .",
"build": "npm run justbuild",
"precommit": "npm run build"
},
"license": "MIT",
"devDependencies": {
"chai": "4.1.2",
"husky": "0.14.3",
"mocha": "3.5.3",
"rimraf": "2.6.2",
"ts-node": "3.3.0",
"tslint": "4.5.1",
"typescript": "2.5.2",
"typings": "2.1.1"
},
"dependencies": {
"reflect-metadata": "0.1.10"
}
}