This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 2.16 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": "alexa-smart-screen-web-components",
"version": "1.1.0",
"private": true,
"description": "Alexa Smart Screen Web Components",
"license": "SEE LICENSE IN LICENSE.txt",
"scripts": {
"build": "lerna run build && yarn build:cli",
"build:clean": "lerna run build:clean && tsc --build --clean && yarn build:cli",
"build:cli": "tsc",
"createProject": "node dist/createProject.js",
"clean": "lerna clean && tsc --build --clean && rm -rf dist && rm -rf .nyc_output && rm -rf node_modules",
"clean:packages": "rm -rf packages/*/dist && rm -rf packages/*/.nyc_output && rm -rf packages/*/yarn-error.log && rm -rf packages/*/tsconfig.tsbuildinfo",
"clean:samples": "rm -rf samples/*/dist && rm -rf samples/*/.nyc_output && rm -rf samples/*/yarn-error.log && rm -rf samples/*/tsconfig.tsbuildinfo",
"clean:all": "yarn clean && yarn clean:packages && yarn clean:samples",
"lint": "lerna run --parallel lint && eslint --fix . --ext .ts",
"test": "lerna run --parallel test",
"pre-commit": "lerna run pre-commit && yarn lint && yarn build:cli",
"prepare": "husky install"
},
"engines": {
"node": ">= 14.17.4",
"yarn": ">=1.4.0"
},
"workspaces": {
"packages": ["packages/*", "samples/*"],
"nohoist": ["**/apl-client", "**/@amzn/rtcmedia_browser_adapter"]
},
"devDependencies": {
"@types/chai": "~4.1.7",
"@types/ejs": "^3.1.1",
"@types/inquirer": "^8.2.1",
"@types/jsdom-global": "^3.0.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.17.4",
"@types/sinon": "^9.0.5",
"@types/shelljs": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chai": "^4.2.0",
"core-js": "^3.19.1",
"eslint": "^8.1.0",
"eslint-plugin-header": "^3.1.1",
"esm": "^3.2.25",
"husky": "^7.0.4",
"jsdom": "^18.0.1",
"jsdom-global": "^3.0.2",
"lerna": "^4.0.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"sinon": "^7.5.0",
"ts-auto-mock": "^3.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.4.4"
},
"dependencies": {
"ejs": "^3.1.8",
"chalk": "^4.1.2",
"inquirer": "^8.2.4",
"shelljs": "^0.8.5"
}
}