-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
156 lines (156 loc) · 4.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "koaton",
"version": "0.0.0-semantic-release",
"description": "Koaton is a fullstack framework based on Koa.",
"main": "./index.js",
"scripts": {
"jsdoc": "jsdoc -R README.md src -r & esdoc",
"esdoc": "esdoc -c esdoc.json",
"export": "koaton-exporter src/*.js src/**/*.js ./ -r src/ -t v2",
"eslint": "eslint src --ignore-path .gitignore",
"test": "node --expose-internals utils/dropdatabase.js & mocha test/unit/BundleItem.js test/integration/index.js --compilers js:babel-register",
"test:debug": "cross-env DEBUG=koaton node --expose-internals utils/dropdatabase.js & mocha test/unit/BundleItem.js test/integration/index.js --compilers js:babel-register",
"cover": "nyc npm t",
"cover:debug": "cross-env DEBUG=koaton nyc npm t",
"export:live": "npm run export & chokidar src -c \"cls && npm run export\"",
"eslint:live": "npm run eslint & chokidar src -c \"cls && npm run eslint\"",
"test:live": "npm t -- -w",
"esdoc:live": "npm-run-all --parallel esdoc:watch esdoc:reload",
"cover:live": "npm-run-all --parallel cover:watch cover:reload",
"cover:reload": "node reloadcoverage.js",
"esdoc:reload": "node reloadjsdoc.js",
"cover:watch": "npm run cover & chokidar src test -c \"cls & npm run cover\"",
"esdoc:watch": "npm run esdoc & chokidar src test -c \"cls & npm run esdoc\"",
"codelive": "npm-run-all --parallel export:live eslint:live",
"codeclimate:report": "codeclimate-test-reporter < coverage/lcov.info",
"commit": "git add -A & git-cz",
"semantic-release": "semantic-release",
"precommit": "npm run eslint && npm run cover"
},
"files": [
"scripts",
"middleware/**/*.js",
"support/**/*.js",
"views/**/*.js",
"index.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">= 8.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gerard2p/koaton.git"
},
"keywords": [
"koa",
"bootstrap",
"seed",
"mvc",
"emberjs",
"websockets"
],
"author": "Gerardo Pérez Pérez <[email protected]>",
"license": "AGPL-3.0",
"readmeFilename": "README.md",
"homepage": "https://github.com/gerard2p/koaton.git",
"dependencies": {
"bcrypt": "^3.0.0",
"caminte": "git+https://github.com/gerard2p/caminte.git",
"colors": "^1.1.2",
"consolidate": "^0.15.0",
"debug": "^4.0.0",
"etag": "^1.8.1",
"i": "^0.3.5",
"jsurl": "^0.1.5",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-helmet": "^4.0.0",
"koa-i18n": "^2.1.0",
"koa-locale": "^1.3.0",
"koa-logger": "^3.0.0",
"koa-passport": "^4.0.0",
"koa-router": "^7.4.0",
"koa-session": "^5.8.1",
"koa-static": "^5.0.0",
"oauth2orize-koa": "^1.3.2",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-oauth2-client-password": "^0.1.2",
"upath": "^1.0.4",
"why-is-node-running": "^2.0.2"
},
"devDependencies": {
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.5.2",
"cheerio": "^1.0.0-rc.1",
"chokidar": "^2.0.2",
"cross-spawn": "^6.0.5",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.1",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.0.0",
"eslint-config-happiness": "^10.2.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^4.0.0",
"koaton-exporter": "^1.3.0",
"mocha": "^5.0.4",
"nyc": "^12.0.1",
"request-promise": "^4.2.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"lcov",
"text"
],
"include": [
"src/**"
],
"exclude": [
"src/support/include.js",
"src/support/globals.js",
"src/support/consoleLines.js"
],
"sourceMap": false,
"instrument": false,
"cache": true,
"check-coverage": true,
"all": false,
"report-dir": "./coverage"
},
"env": {
"PYTHON": "C:/Python27"
},
"subdomain": "bcrypt-test",
"domains": [],
"databases": {},
"babel": {
"plugins": [
"babel-plugin-transform-koaton-es6-modules",
"istanbul"
],
"ignore": [
"serverconf",
"config/",
"docs/",
"lib/",
"node_modules/",
"templates/",
"testcoverage/",
"testingapp/"
]
}
}