This repository has been archived by the owner on Jan 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "di-strategy",
"version": "6.5.1",
"description": "high level dependency injector",
"main": "node.js",
"module": "browser.js",
"browser": "browser.js",
"scripts": {
"build": "npm run build:node & npm run build:browser",
"build:node": "babel src --out-dir dist --source-maps inline",
"build:browser": "webpack",
"dev": "npm run build -- --watch",
"mocha": "mocha --require babel-register",
"test": "npm run mocha -- test/node.js",
"test:dev": "npm run test -- --watch",
"test:doc": "npm run mocha -- test -R markdown > test/documentation.md --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redcatjs/di-strategy.git"
},
"keywords": [
"di",
"dependency",
"injection",
"container",
"strategy",
"ioc",
"dic",
"node",
"webpack",
"inversion of control",
"decorator"
],
"author": "Jo <[email protected]> (https://redcat.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/redcatjs/di-strategy/issues"
},
"homepage": "https://github.com/redcatjs/di-strategy#readme",
"devDependencies": {
"babel-cli": "^7.0.0-beta.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^7.0.0-beta.3",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^7.0.0-beta.3",
"babel-preset-env": "^2.0.0-beta.2",
"babel-preset-stage-3": "^7.0.0-beta.3",
"babel-register": "^7.0.0-beta.3",
"babel-runtime": "^7.0.0-beta.3",
"chai": "^4.1.2",
"express": "^4.16.2",
"interface-prototype": "^1.1.0",
"mocha": "^4.0.1",
"sinon": "^4.1.2",
"webpack": "^3.9.1"
},
"dependencies": {
"stack-trace": "0.0.10"
}
}