-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "klark-js",
"version": "1.2.3",
"description": "Module loader (plugin system) based on dependency injection for NodeJS applications",
"main": "index",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha test --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"unit-test": "node ./node_modules/mocha/bin/_mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apostolidhs/klark-js.git"
},
"keywords": [
"dependency injection",
"plugins",
"module loader",
"module bundler",
"structure"
],
"author": "John Apostolidis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apostolidhs/klark-js/issues"
},
"homepage": "https://github.com/apostolidhs/klark-js#readme",
"dependencies": {
"globby": "^6.1.0",
"lodash": "^4.17.2",
"promise": "^7.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0"
}
}