-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "matilda-apiclient",
"version": "0.1.7",
"description": "matilda api client",
"keywords": [
"matilda",
"dictionary"
],
"author": "Paul Vollmer",
"license": "MIT",
"homepage": "https://github.com/paulvollmer/matilda-apiclient-js",
"bugs": {
"url": "https://github.com/paulvollmer/matilda-apiclient-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paulvollmer/matilda-apiclient-js.git"
},
"main": "src/index.js",
"unpkg": "./dist/main.js",
"umd:main": "./dist/main.js",
"scripts": {
"build": "webpack",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"docs": "esdoc",
"version": "auto-changelog -p --template keepachangelog --breaking-pattern breaking && git add CHANGELOG.md"
},
"dependencies": {
"whatwg-fetch": "3.4.1"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/runtime": "7.11.2",
"auto-changelog": "2.2.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"esdoc": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "7.14.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"prettier": "2.2.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.12"
}
}