forked from aws-ia/cloudformation-fastly-resource-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 978 Bytes
/
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
{
"name": "fastly-dictionary-dictionaryitem",
"version": "0.1.0",
"description": "AWS custom resource provider named Fastly::Dictionary::DictionaryItem.",
"private": true,
"main": "dist/handlers.js",
"files": [
"dist"
],
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@amazon-web-services-cloudformation/cloudformation-cli-typescript-lib": "^1.0.5",
"class-transformer": "0.3.1",
"fastly": "^3.0.0"
},
"devDependencies": {
"jest": "^29.1.2",
"@types/jest": "^27.5.2",
"@types/node": "^14.0.0",
"@types/snowflake-sdk": "^1.6.7",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.8.1",
"typescript": "^4.1.2"
},
"optionalDependencies": {
"aws-sdk": "^2.656.0"
}
}