This repository was archived by the owner on Feb 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
67 lines (67 loc) · 1.65 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
{
"name": "wpcom",
"description": "Official JavaScript library for the WordPress.com REST API",
"version": "5.4.2",
"main": "build/index.js",
"author": "Automattic, Inc.",
"scripts": {
"prepublish": "make all"
},
"contributors": [
"Damian Suarez <rdsuarez@gmail.com>",
"Dennis Snell <dennis.snell@automattic.com>",
"Nathan Rajlich <nathan@automattic.com>",
"Matt Sherman <matt.sherman@automattic.com>",
"Timmy Crawford <timmy.crawford@automattic.com>",
"Benoit Person <benoit.person@gmail.com>",
"Jake Fried <jake.fried@automattic.com>",
"Jarda Snajdr <jsnajdr@gmail.com>"
],
"keywords": [
"wordpress",
"wordpress.com",
"browser",
"rest",
"api",
"library"
],
"repository": "git@github.com:Automattic/wpcom.js.git",
"license": "MIT",
"browserslist": {
"defaults": [
"extends @wordpress/browserslist-config"
],
"test": [
"current node"
]
},
"files": [
"build",
"History.md",
"README.md"
],
"browser": {
"./build/lib/util/fs.js": "./build/lib/util/fs-browser.js"
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"core-js": "^2.6.5",
"debug": "^3.1.0",
"qs": "^6.5.2",
"wpcom-xhr-request": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"@wordpress/browserslist-config": "^2.3.0",
"eslint": "^5.16.0",
"mocha": "^6.0.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"wpcom-oauth-cors": "^1.0.0",
"wpcom-proxy-request": "^5.0.0"
}
}