-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 949 Bytes
/
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
{
"name": "cider-di",
"version": "2.0.0",
"description": "Minimal Dependency Injection Framework for javascript",
"scripts": {
"test": "gulp clean && gulp build && gulp test",
"package": "gulp clean && gulp build copy-config"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chris-pardy/cider-di.git"
},
"keywords": [
"Dependency",
"Injection",
"Guice",
"Spring",
"Dagger",
"IOC",
"Inversion",
"DI"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/chris-pardy/cider-di/issues"
},
"homepage": "https://github.com/chris-pardy/cider-di#readme",
"devDependencies": {
"@types/jest": "^22.2.3",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-jest": "^4.0.2",
"gulp-typescript": "^4.0.2",
"jest": "^22.4.3",
"ts-jest": "^22.4.4",
"typescript": "^2.8.3"
}
}