-
Notifications
You must be signed in to change notification settings - Fork 319
/
package.json
62 lines (62 loc) · 3.37 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
{
"name": "xdm",
"version": "1.9.5",
"description": "Experience Data Models",
"main": "",
"config": {
"aem_user": "packageUser",
"aem_password": "override me securely",
"markdown-importer-version": "0.0.4",
"schemas": 197
},
"scripts": {
"clean": "rm -rf docs/reference",
"markdown": "./bin/pre-doc-gen.sh && jsonschema2md -o docs/reference -d docsource --link-abstract abstract.md --link-extensible extensions.md --link-status status.md --link-id id.md --link-custom extensions.md --link-additional extensions.md -v \"06\" || : && rm -rf docsource",
"test": "mocha",
"lint": "prettier --write *.json RELEASING.md CHANGELOG.md CONTRIBUTING.md README.md docs/*.md schemas/*/**/*.md schemas/*/*.json schemas/*/**/*.json components/*/*.json components/*/**/*.json extensions/*/**/*.json extensions/*/*/**/*.json && git diff --exit-code",
"lint-quick": "pretty-quick",
"package": "npm run markdown && curl -o \"./node_modules/markdown-importer-0.0.4-jar-with-dependencies.jar\" -C - https://artifactory.corp.adobe.com/artifactory/maven-markdown-tools-release/io/adobe/udp/markdown-importer/0.0.4/markdown-importer-0.0.4-jar-with-dependencies.jar && java -jar ./node_modules/markdown-importer-0.0.4-jar-with-dependencies.jar markdown2aem.yaml",
"upload": "curl -u \"$npm_package_config_aem_user:$npm_package_config_aem_password\" -F file=\"@xdm-docs.zip\" -F name=\"xdm-docs\" -F force=true -F install=true https://author-adobeio-stage.adobemsbasic.com/crx/packmgr/service.jsp",
"upload:prod": "curl -u \"$npm_package_config_aem_user:$npm_package_config_aem_password\" -F file=\"@xdm-docs.zip\" -F name=\"xdm-docs\" -F force=true -F install=true https://author-adobeio-prod.adobemsbasic.com/crx/packmgr/service.jsp",
"activate": "curl -u \"$npm_package_config_aem_user:$npm_package_config_aem_password\" -F cmd=activate -F ignoredeactivated=true -F onlymodified=true -F path=/content/udp/en/open/standards/xdm/docs https://author-adobeio-stage.adobemsbasic.com/etc/replication/treeactivation.html",
"activate:prod": "curl -u \"$npm_package_config_aem_user:$npm_package_config_aem_password\" -F cmd=activate -F ignoredeactivated=true -F onlymodified=true -F path=/content/udp/en/open/standards/xdm/docs https://author-adobeio-prod.adobemsbasic.com/etc/replication/treeactivation.html",
"stability-check": "node bin/show-stablization-candidates.js",
"incompatibility-check": "cd bin; node incompatibility-check.js",
"xed-validation": "cd bin/xed-validation; ./xed-validation.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/xdm.git"
},
"bugs": {
"url": "https://github.com/adobe/xdm/issues"
},
"license": "CC-BY-4.0",
"devDependencies": {
"@adobe/jsonschema2md": "1.1.0",
"ajv": "5.5.0",
"ajv-cli": "^2.1.0",
"camelcase": "^4.1.0",
"deep-diff": "^1.0.2",
"deep-rename-keys": "^0.2.1",
"dot-prop": "^4.2.0",
"flat": "^4.0.0",
"fs-extra": "^1.0.0",
"get-value": "^3.0.1",
"has-value": "^2.0.2",
"json-dup-key-validator": "^1.0.2",
"json-schema-deref-sync": "^0.10.1",
"json-schema-merge-allof": "^0.6.0",
"mocha": "^5.0.1",
"mocha-junit-reporter": "^1.17.0",
"prettier": "^1.15.3",
"pretty-quick": "^1.4.1",
"set-value": "^4.0.1",
"shelljs": "^0.8.5",
"shx": "^0.3.2",
"winston": "^2.4.3"
},
"dependencies": {
"commander": "^4.1.1"
}
}