This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
64 lines (64 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
63
64
{
"name": "ask-sdk-jsx-for-apl",
"version": "1.0.0-beta.5",
"description": "JSX for APL is a React-based APL templating framework that allows developers to define APL document within the code.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"license": "Apache-2.0",
"homepage": "https://github.com/alexa-labs/ask-sdk-jsx-for-apl#readme",
"bugs": {
"url": "https://github.com/alexa-labs/ask-sdk-jsx-for-apl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/alexa-labs/ask-sdk-jsx-for-apl.git"
},
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.116",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"ask-sdk": "2.10.0",
"ask-sdk-core": "2.10.1",
"ask-sdk-model": "1.33.1",
"@phenomnomnominal/tsquery": "^3.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"jest": "^26.0.0",
"prettier": "^1.14.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.6.1",
"standard-version": "^9.0.0",
"ts-jest": "^26.0.0",
"tslint": "^5.11.0",
"typescript": "^3.5.1"
},
"peerDependencies": {
"ask-sdk": "^2.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"scripts": {
"test": "npm run build && jest",
"prettier": "prettier 'lib/**/*.ts{,,x}' --write",
"prettier:apl": "prettier 'lib/responses/apl/{alexa,alexa-layouts}/**/*' --write",
"build": "tsc",
"release": "npm run build && standard-version",
"wipe": "find test lib -name '*.tsx' -or -name '*.ts' -not -name '*.d.ts' | sed -E 's/\\.tsx?$//g' | awk '{print $0\".js\\n\"$0\".d.ts\"}' | xargs rm\n",
"clean": "rm -rf build dist node_modules && npm run clean:js",
"clean:js": "find ./lib -name '*.d.ts' ! -name types.d.ts -type f -delete && find ./lib -name '*.js' -delete && find ./test -name '*.d.ts' ! -name types.d.ts -type f -delete && find ./test -name '*.js' -type f -delete"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"alexa-layouts.js",
"alexa-layouts.d.ts",
"!dist/test"
],
"author": ""
}