This repository has been archived by the owner on Jan 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "contentful-extension-cli",
"author": "Contentful GmbH",
"version": "2.0.0",
"scripts": {
"test": "npm run lint && npm run test-unit && npm run test-integration",
"lint": "eslint lib/ bin/ test/",
"test-integration": "_mocha test/integration/**/*-test.js",
"test-unit": "_mocha test/unit/**/*-test.js"
},
"bugs": {
"url": "https://github.com/contentful/contentful-extension-cli/issues"
},
"description": "CLI to manage UI Extensions on Contentful",
"main": "lib/api.js",
"bin": {
"contentful-extension": "./bin/contentful-extension",
"contentful-extension-create": "./bin/contentful-extension-create",
"contentful-extension-delete": "./bin/contentful-extension-delete",
"contentful-extension-read": "./bin/contentful-extension-read",
"contentful-extension-update": "./bin/contentful-extension-update"
},
"devDependencies": {
"body-parser": "^1.14.1",
"chai": "^3.4.0",
"dirty-chai": "^1.2.2",
"eslint": "^1.8.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"express": "^4.13.3",
"mocha": "^2.3.3",
"proxyquire": "^1.7.9",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"temp": "^0.8.3"
},
"homepage": "https://github.com/contentful/contentful-extension-cli#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/contentful-extension-cli.git"
},
"dependencies": {
"bluebird": "^3.0.5",
"cli-table": "^0.3.1",
"contentful-management": "^0.8.3",
"lodash": "^3.10.1",
"yargs": "^3.29.0"
},
"engines": {
"iojs": ">=2.5.0"
}
}