1 | {
|
2 | "name": "adonis-fold",
|
3 | "version": "3.0.3",
|
4 | "description": "Dependency manager and ioc container for your next NodeJs application",
|
5 | "main": "index.js",
|
6 | "directories": {
|
7 | "test": "test"
|
8 | },
|
9 | "scripts": {
|
10 | "test": "npm run lint && istanbul cover _mocha --report lcovonly -- -R spec test/unit && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
|
11 | "coverage": "istanbul cover _mocha test/unit --bail",
|
12 | "lint": "standard src/**/*.js test/**/*.spec.js"
|
13 | },
|
14 | "author": "adonisjs",
|
15 | "license": "MIT",
|
16 | "devDependencies": {
|
17 | "chai": "^3.3.0",
|
18 | "coveralls": "^2.11.4",
|
19 | "cz-conventional-changelog": "^1.1.5",
|
20 | "istanbul": "^0.3.22",
|
21 | "mocha": "^3.0.1",
|
22 | "mocha-lcov-reporter": "^1.0.0",
|
23 | "standard": "^7.1.2"
|
24 | },
|
25 | "dependencies": {
|
26 | "cat-log": "^1.0.0",
|
27 | "co": "^4.6.0",
|
28 | "co-parallel": "^1.0.0",
|
29 | "coveralls": "^2.11.12",
|
30 | "dwell": "^1.0.0",
|
31 | "eventemitter2": "^2.1.0",
|
32 | "lodash": "^3.10.1",
|
33 | "node-exceptions": "^1.0.3",
|
34 | "require-stack": "^1.0.1"
|
35 | },
|
36 | "repository": {
|
37 | "type": "git",
|
38 | "url": "git+https://github.com/poppinss/adonis-fold.git"
|
39 | },
|
40 | "keywords": [
|
41 | "ioc",
|
42 | "dependency",
|
43 | "injection",
|
44 | "service",
|
45 | "provider",
|
46 | "autoloading"
|
47 | ],
|
48 | "bugs": {
|
49 | "url": "https://github.com/poppinss/adonis-fold/issues"
|
50 | },
|
51 | "homepage": "https://github.com/poppinss/adonis-fold#readme",
|
52 | "config": {
|
53 | "commitizen": {
|
54 | "path": "./node_modules/cz-conventional-changelog"
|
55 | }
|
56 | }
|
57 | }
|