-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "egg-thrift-mock",
"version": "0.0.6",
"description": "thrift mock module",
"eggPlugin": {
"name": "thrift-mock"
},
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"fix": "eslint --fix .",
"ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
"pkgfiles": "egg-bin pkgfiles",
"autod": "autod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kikooo/thrift-mock.git"
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"thrift-mock",
"thrift",
"mock"
],
"files": [
"index.js",
"app.js",
"lib"
],
"author": "kikooo",
"license": "ISC",
"bugs": {
"url": "https://github.com/kikooo/thrift-mock/issues"
},
"homepage": "https://github.com/kikooo/thrift-mock#readme",
"dependencies": {
"long": "^4.0.0",
"thrift": "^0.13.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.0"
}
}