-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "koa2-multiparty",
"version": "1.0.1",
"description": "multiparty middleware for koa2 only",
"main": "index.js",
"scripts": {
"test": "mocha test/*.test.js --reporter spec",
"commitmsg": "commitlint -e $GIT_PARAMS",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -o CHANGELOG.md",
"version": "npm run changelog&&git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hong-boy/koa2-multiparty.git"
},
"keywords": [
"koa2",
"multipart",
"upload"
],
"author": "hong-boy",
"license": "MIT",
"bugs": {
"url": "https://github.com/hong-boy/koa2-multiparty/issues"
},
"homepage": "https://github.com/hong-boy/koa2-multiparty#readme",
"dependencies": {
"multiparty": "^4.1.3",
"on-finished": "^2.3.0",
"qs": "^6.5.1",
"type-is": "^1.6.16"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"conventional-changelog-cli": "^1.3.17",
"husky": "^0.14.3",
"koa": "^2.5.0",
"koa-router": "^7.4.0",
"mocha": "^5.0.5",
"power-assert": "^1.4.4",
"safe-buffer": "^5.1.1",
"supertest": "^3.0.0"
}
}