This repository was archived by the owner on Oct 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.55 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.55 KB
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
{
"name": "litexa",
"directories": {
"doc": "docs"
},
"scripts": {
"audit:fix": "npx lerna run audit:fix",
"build": "npm run clean && npm install",
"clean": "npx lerna clean --yes && npx rimraf ./node_modules ./.nyc_output",
"coverage": "npx rimraf .nyc_output_combined && npx lerna exec --concurrency 1 npm run coverage && npm run coverage:report",
"coverage:combine": "npx rimraf .nyc_output && npx mv .nyc_output_combined .nyc_output && npx mv ./build/brazil-documentation/coverage/cobertura-coverage.xml ./build/brazil-documentation/coverage/coverage.xml",
"coverage:report": "npm run coverage:combine && npx nyc report",
"docs": "npm run docs:reference && npm run docs:dev",
"docs:build": "npm run docs:reference && npx vuepress build docs",
"docs:dev": "npx vuepress dev docs",
"docs:reference": "cd ./packages/litexa && npm run rdoc && mv ./src/documentation/reference.md ../../docs/reference/README.md && cd ../../",
"postinstall": "npx lerna bootstrap && npx lerna link convert",
"release": "npm run build && npm run coverage",
"test": "npx lerna exec --concurrency 1 npm run test",
"update-lock-files": "npm install --package-lock-only && npx lerna exec -- npm install --package-lock-only"
},
"author": "Amazon",
"license": "Apache-2.0",
"keywords": [
"Alexa",
"Skills",
"SDK"
],
"dependencies": {
"@litexa/apl": "file:packages/litexa-apl",
"@litexa/apla": "file:packages/litexa-apla",
"@litexa/assets-wav": "file:packages/litexa-assets-wav",
"@litexa/core": "file:packages/litexa",
"@litexa/deploy-aws": "file:packages/litexa-deploy-aws",
"@litexa/gadgets": "file:packages/litexa-gadgets",
"@litexa/html": "file:packages/litexa-html",
"@litexa/integration-tests": "file:tests",
"@litexa/render-template": "file:packages/litexa-render-template",
"@litexa/voices": "file:packages/litexa-voices"
},
"devDependencies": {
"assert": "^1.5.0",
"aws-sdk": "^2.1180.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"chokidar": "^3.5.3",
"coffeescript": "^2.7.0",
"lerna": "^5.0.0",
"mkdirp": "^1.0.4",
"mocha": "^10.0.0",
"module-alias": "^2.2.2",
"move-concurrently": "^1.0.1",
"nyc": "^15.0.0",
"rimraf": "^2.7.1",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"sinon": "^7.5.0"
},
"repository": "github:alexa-games/litexa",
"bugs": "https://github.com/alexa-games/litexa/issues",
"homepage": "https://litexa.com"
}