forked from datocms/js-datocms-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.08 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
{
"name": "datocms-client",
"version": "0.8.15",
"description": "DatoCMS API client and CLI tool",
"browser": "dist/client.js",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/datocms/js-datocms-client.git"
},
"scripts": {
"lint:autocorrect": "eslint ./ --fix",
"test": "eslint ./ && mocha ./test/**/*_test.js --require \"@babel/register\" --require babel-polyfill --require \"./test/support/common\" --timeout 15000",
"prepublish": "rimraf lib dist && mkdir lib dist && node build/buildApiMethods.js && node build/transformPackageJson.js && npm run lib && npm run dist",
"dist": "NODE_ENV=production webpack --progress",
"dev": "NODE_ENV=production webpack --progress --watch",
"lib": "babel src --out-dir lib",
"watch": "babel -w src --out-dir lib --source-maps"
},
"files": [
"dist",
"lib",
"bin"
],
"keywords": [
"datocms",
"cms",
"metalsmith",
"hexo"
],
"bin": {
"dato": "./bin/dato.js"
},
"author": "DatoCMS <[email protected]>",
"contributors": [
{
"name": "Matteo Manzo",
"email": "[email protected]"
},
{
"name": "Stefano Verna",
"email": "[email protected]"
},
{
"name": "Irene Oppo",
"email": "[email protected]"
}
],
"homepage": "https://github.com/datocms/js-datocms-client",
"bugs": {
"url": "https://github.com/datocms/js-datocms-client/issues"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/register": "^7.0.0-rc.1",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta.4",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nock": "^10.0.3",
"np": "^3.0.4",
"parser-front-matter": "^1.6.4",
"toml": "^2.3.3",
"toml-parser": "^0.0.7",
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"arr-diff": "^4.0.0",
"babel-polyfill": "^6.26.0",
"chokidar": "^2.0.4",
"clui": "^0.3.6",
"colors": "^1.3.1",
"contentful-management": "^5.3.5",
"core-js": "^2.5.7",
"denodeify": "^1.2.1",
"docopt": "^0.6.2",
"dotenv": "^6.0.0",
"escape-string-regexp": "^1.0.5",
"https-proxy-agent": "^2.2.1",
"humps": "^2.0.1",
"inflected": "^2.0.4",
"isomorphic-fetch": "^2.2.1",
"js-yaml": "^3.12.0",
"json-schema-ref-parser": "^5.1.2",
"jsonref": "^4.0.2",
"mkdirp": "^0.5.1",
"object.omit": "^3.0.0",
"ora": "^3.0.0",
"pluralize": "^7.0.0",
"pretty-error": "^2.1.1",
"proxy-polyfill": "^0.3.0",
"pusher-js": "^4.3.0",
"request": "^2.88.0",
"rimraf": "^2.6.2",
"speakingurl": "^14.0.1",
"tmp": "^0.0.33",
"toml-js": "^0.0.8",
"traverse": "^0.6.6",
"truncate": "^2.0.1",
"updeep": "^1.0.0",
"wpapi": "^1.1.2"
}
}