-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.28 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "awilix-groa",
"version": "0.0.0-development",
"description": "Awilix helpers/middleware for Groa",
"main": "dist/index.js",
"scripts": {
"lint": "npm run lint:specific \"$npm_package_directories_src/**/*.js\"",
"lint:specific": "prettier-eslint \"$@\" --write",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage --no-cache",
"coverage:watch": "jest --coverage --no-cache --watch",
"coverage:ci": "mkdir -p coverage && jest --coverage --no-cache --ci --coverageReporters=text-lcov > $npm_package_directories_coverage/lcov.info",
"coverage:publish": "cat $npm_package_directories_coverage/lcov.info | coveralls",
"cz": "git-cz",
"build": "BABEL_ENV=build babel $npm_package_directories_src -d $npm_package_directories_dist",
"semantic-release": "semantic-release",
"docs": "jsdoc -d $npm_package_directories_docs \"$npm_package_directories_src\""
},
"repository": {
"type": "git",
"url": "https://github.com/galenwarren/awilix-groa.git"
},
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"directories": {
"src": "./src",
"dist": "./dist",
"docs": "./docs",
"coverage": "./coverage"
},
"keywords": [
"awilix",
"groa",
"grpc"
],
"author": "Galen Warren <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/galenwarren/awilix-groa/issues"
},
"homepage": "https://github.com/galenwarren/awilix-groa#readme",
"dependencies": {
"awilix": "^3.0.8",
"awilix-router-core": "^1.3.2",
"groa-router": "0.0.2",
"koa-compose": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"commitizen": "^2.10.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.0.0-rc.12",
"jest": "^23.3.0",
"jsdoc": "^3.5.5",
"lint-staged": "^7.2.0",
"prettier-eslint-cli": "^4.7.1",
"semantic-release": "^15.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}