-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "opium-ioc",
"version": "2.5.2",
"main": "dist/src/index.js",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/dryajov/opium.git"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist/",
"watch": "tsc --watch",
"test": "npm run build && mocha --require source-map-support/register dist/test/",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"prepublishOnly": "npm run test"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/debug": "^4.1.4",
"@types/mocha": "^5.2.6",
"mocha": "^6.1.4",
"ts-mocha": "^6.0.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.4.4"
},
"keywords": [
"IoC",
"DI",
"dependency injection",
"inversion of control",
"es6 IoC",
"es6 DI"
],
"dependencies": {
"chai": "^4.2.0",
"debug": "^4.1.0",
"dirty-chai": "^2.0.1",
"reflect-metadata": "^0.1.13"
}
}