-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "@yuque/sdk",
"version": "1.1.1",
"description": "Node SDK for yuque",
"main": "lib/index.js",
"dependencies": {
"debug": "^4.1.1",
"extend2": "^1.0.0",
"urllib": "^2.33.1"
},
"devDependencies": {
"autod": "^3.0.1",
"egg-bin": "^4.3.7",
"egg-ci": "^1.8.0",
"eslint": "^4.18.1",
"eslint-config-egg": "^7.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
"pkgfiles": "egg-bin pkgfiles"
},
"ci": {
"version": "8, 10"
},
"eslintIgnore": [
"coverage",
"dist"
],
"homepage": "https://github.com/yuque/sdk",
"repository": {
"type": "git",
"url": "[email protected]:yuque/sdk.git"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"author": "TZ <[email protected]>",
"license": "MIT"
}