-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 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
{
"name": "",
"version": "1.0.0",
"description": "Examples of dependency injection in javascript",
"scripts": {
"start:bottle": "cd bottle && babel-node index.js",
"test:bottle": "cd bottle && mocha --compilers js:babel-core/register",
"start:constitute": "cd constitute && babel-node index.js",
"test:constitute": "cd constitute && mocha --compilers js:babel-core/register",
"start:constitute-es7": "cd constitute-decorators && babel-node index.js",
"test:constitute-es7": "cd constitute-decorators && mocha --compilers js:babel-core/register",
"start:inversify": "cd inversify && tsc && cd build && babel-node index.js"
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"bottlejs": "^1.6.0",
"constitute": "^1.6.2",
"eslint": "^4.18.2",
"eslint-config-sparkbox": "^0.4.0",
"inversify": "^3.3.0",
"mocha": "6",
"reflect-metadata": "^0.1.10",
"typescript": "^2.2.2"
}
}