This repository has been archived by the owner on May 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
144 lines (144 loc) · 3.88 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@mapcreator/api",
"version": "2.2.1",
"description": "Maps4News JavaScript Api",
"main": "dist/bundle.js",
"repository": "[email protected]:MapcreatorIO/api-wrapper.git",
"author": "Bas Bieling <[email protected]>",
"license": "BSD-3-Clause",
"files": [
"dist",
"src",
"manual"
],
"dependencies": {
"@babel/runtime": "^7.10.2",
"case": "^1.6.3",
"form-data": "^3.0.0",
"json-stable-stringify": "^1.0.1",
"ky": "^0.21.0",
"ky-universal": "^0.8.1",
"mitt": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-export-default-from": "^7.10.1",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"contributors": "^0.5.1",
"dotenv-webpack": "^1.8.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.12.0",
"eslint-plugin-compat": "^3.7.0",
"eslint-plugin-promise": "^4.2.1",
"fs-extra": "^9.0.1",
"jest": "^26.0.1",
"jest-junit": "^10.0.0",
"licensecheck": "^1.3.0",
"nock": "^13.0.3",
"nyc": "^15.1.0",
"tap-nyc": "^1.0.3",
"terser-webpack-plugin": "^3.0.8",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"build": "APP_ENV=production npx webpack",
"watch": "npx webpack --progress --watch",
"docs": "npx esdoc",
"lint": "npx eslint --no-color --format checkstyle --output-file build/checkstyle.xml src",
"clean": "rm -fr dist docs build || true",
"all": "npm run clean && npm run lint && npm run build && npm run test && npm run docs",
"test": "npx jest",
"test-ci": "npx jest --coverage --ci --verbose"
},
"contributors": [
"Bas Bieling <[email protected]> (https://GitHub.com/Mechazawa)"
],
"browserslist": [
"> 1%",
"Firefox ESR",
"not dead",
"not IE_mob < 12",
"not OperaMini all"
],
"esdoc": {
"source": "./src",
"destination": "./docs",
"name": "maps4news",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"accessor": {
"access": [
"public",
"protected"
],
"autoPrivate": true
},
"undocumentIdentifier": {
"enable": true
},
"unexportedIdentifier": {
"enable": false
},
"typeInference": {
"enable": true
},
"brand": {
"title": "Maps4News Api Wrapper",
"description": "Maps4News Api Javascript Wrapper"
},
"manual": {
"asset": "./manual/assets",
"index": "./README.md",
"files": [
"./manual/examples.md",
"./manual/examples.authentication.md",
"./manual/building.md",
"./manual/installation.md"
]
}
}
},
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": {
"all": true
}
},
{
"name": "esdoc-inject-script-plugin",
"option": {
"enable": true,
"scripts": [
"./dist/bundle.browser.js",
"./manual/js/sandbox.js"
]
}
},
{
"name": "esdoc-inject-style-plugin",
"option": {
"enable": true,
"styles": [
"./manual/css/sidebar_fix.css",
"./manual/css/hide_import.css"
]
}
}
]
}
}