-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.69 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
{
"name": "yyfjs",
"version": "2.1.2-beta",
"title": "YYF.js",
"description": "the promise-like front-end JavaScript library for YYF RESTful API request client",
"keywords": [
"YYF",
"RESTful API",
"request",
"http request"
],
"main": "lib/yyf.js",
"browser": "lib/yyf.js",
"unpkg": "lib/yyf.min.js",
"typings": "lib/yyf.d.ts",
"scripts": {
"test": "node lib/yyf.js",
"build": "npm run tsd && node ./tools/build.js",
"p": "npm run build && ./tools/product",
"tsd": "jsdoc --verbose -t ./node_modules/tsd-jsdoc src/yyf.js -d lib/",
"doc": "jsdoc --verbose -P package.json -R README.md src/yyf.js"
},
"devDependencies": {
"jsdoc": "^3.5.3",
"tsd-jsdoc": "^2.0.0-beta.3",
"uglify-js": "*"
},
"eslintConfig": {
"env": {
"browser": true,
"amd": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"rules": {
"no-console": 0,
"indent": [
"warn",
4,
{
"SwitchCase": 1
}
],
"no-fallthrough": [
"error",
{
"commentPattern": "break[\\s\\w]*omitted"
}
],
"quotes": [
"warn",
"single"
],
"semi": [
"error",
"always"
]
}
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/YunYinORG/YYFJS.git"
},
"author": "New Future",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/YunYinORG/YYFJS/issues"
},
"homepage": "https://github.com/YunYinORG/YYFJS#readme"
}