-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.42 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
{
"name": "egg-kmore",
"author": "waiting",
"version": "0.2.4",
"description": "egg plugin of kmore",
"eggPlugin": {
"name": "kmore"
},
"keywords": [
"midway",
"egg",
"eggPlugin",
"egg-plugin",
"knex",
"kmore",
"typescript",
"ts"
],
"engines": {
"node": ">=10.13.0"
},
"bin": {},
"browser": "",
"es2015": "",
"main": "./index.cjs.js",
"module": "./index.js",
"types": "./index.d.ts",
"bugs": {
"url": "https://github.com/waitingsong/egg-kmore/issues"
},
"homepage": "https://waitingsong.github.io/egg-kmore",
"repository": {
"type": "git",
"url": "git+https://github.com/waitingsong/egg-kmore.git"
},
"license": "MIT",
"nyc": {
"exclude": [
"**/*.js",
"**/*.test.ts",
"**/*.d.ts",
".githooks",
"dist",
"node_modules*",
"src/bin",
"test*"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"dependencies": {
"kmore": "^0.10.0",
"kmore-cli": "^0.2.0"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"@types/power-assert": "*",
"@types/rewire": "*",
"@types/rimraf": "*",
"@types/yargs": "^13.0.0",
"@waiting/eslint-config": "^2.1.0",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"egg": "^2.23.0",
"eslint": "^6.2.0",
"espower-typescript": "^9.0.2",
"intelli-espower-loader": "^1.0.1",
"knex": "^0.19.1",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"pg": "^7.11.0",
"power-assert": ">=1.5",
"rewire": "^4.0.0",
"rimraf": "^3.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-terser": "^5.0.0",
"rxrunscript": "^5.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.0",
"yargs": "^14.0.0"
},
"peerDependencies": {
"knex": ">=0.15.0",
"typescript": "^3.5.0"
},
"scripts": {
"bp:add": "git remote add bp https://github.com/waitingsong/npm-base",
"bp:sync": "git fetch --all -v && git merge bp/master -m \"Merge remote-tracking branch 'bp/master'\"",
"build": "npm run lint && npm run tsc && npm run rp",
"devbuild": "npm run clean && npm run tsc:dev && npm run rp",
"clean": "rm -rf dist/* .vscode/.tsbuildinfo .vscode/.tsbuildinfo.* ",
"cov": "cross-env TS_NODE_PROJECT=test/tsconfig.json nyc mocha",
"cov:coveralls": "cross-env TS_NODE_PROJECT=test/tsconfig.json nyc mocha && nyc report --reporter=text-lcov | coveralls",
"doc": "typedoc src/index.ts src/lib/index.ts src/lib/model.ts",
"jslint": "eslint --fix dist/**/*.js",
"link_global": "npm link typescript",
"lint": "eslint --fix {src,test}/**/*.ts",
"postpublish": "git push origin --follow-tags",
"prepublishOnly": "npm run clean && npm run build",
"release": "standard-version -r",
"release:first": "standard-version --first-release",
"repo:init": "sh .githooks/init-repo.sh",
"rp": "rollup -c rollup.config.js",
"rp:w": "npm run tsc:w | rollup -wc rollup.config.js",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha --opts test/mocha.opts",
"test:browser": "cd .config && npm run browser && cd ..",
"browser:debug": "cd .config && npm run debug && cd ..",
"tsc": "tsc -p tsconfig.json",
"tsc:dev": "tsc -p tsconfig.dev.json",
"tsc:w": "tsc -p tsconfig.json -w"
}
}