This repository was archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "crex",
"version": "2.0.0",
"description": "Creative Exchange SDK for Javascript",
"author": "Mateusz Luczak <mateusz.luczak@outlook.com>",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/wttech/crex-sdk"
},
"engines": {
"node": ">=8.11.1"
},
"homepage": "http://www.cognifide.com/our-technology/zengarden",
"keywords": [
"aem",
"sdk",
"creative exchange",
"cli"
],
"bugs": "https://github.com/Cognifide/crex-sdk/issues",
"bin": {
"ce": "bin/ce.js",
"ce-upload": "bin/ce-upload.js",
"ce-download": "bin/ce-download.js",
"ce-create": "bin/ce-create.js"
},
"scripts": {
"build": "npm run build:module",
"build:module": "webpack",
"jsdoc": "jsdoc -c ./conf.json -d generated-docs -t ./node_modules/ink-docstrap/template -R docs/README.md -r ./lib",
"publish-docs": "rm -rf generated-docs && npm run jsdoc && gh-pages -d generated-docs",
"test": "mocha test/**/*.js"
},
"files": [
"bin",
"lib",
"dist",
"README.md"
],
"dependencies": {
"adm-zip": "^0.4.13",
"archiver": "^3.0.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"ora": "^3.4.0",
"superagent": "^5.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"gh-pages": "^2.0.1",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"mocha": "^6.1.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
}
}