-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "koa-i18next-detector",
"version": "0.7.2",
"description": "A i18next language detecting plugin for Koa 2.0 framework.",
"main": "dist/index.js",
"files": [
"src/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"watch": "watch 'npm run build' src",
"build": "babel src -d dist",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lxzxl/koa-i18next-detector.git"
},
"keywords": [
"i18next detector koa"
],
"author": "lxzxl <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lxzxl/koa-i18next-detector/issues"
},
"homepage": "https://github.com/lxzxl/koa-i18next-detector#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^4.1.6",
"babel-preset-env": "^1.4.0",
"coveralls": "^2.11.4",
"dependency-check": "^2.5.1",
"doctoc": "^0.15.0",
"eslint": "^1.10.1",
"isparta": "^4.0.0",
"rimraf": "^2.4.2",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"watch": "^0.16.0"
},
"dependencies": {
"cookies": "^0.7.0"
}
}