-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "@queue-it/fastly",
"version": "1.0.3",
"description": "Queue-it connector for Fastly",
"main": "assembly/index.ts",
"ascMain": "assembly/index.ts",
"author": "devs@queue-it.com",
"repository": "https://github.com/queueit/KnownUser.V3.Fastly",
"license": "MIT",
"files": [
"package.json",
"README.md",
"assembly/sdk",
"assembly/contextProvider.ts",
"assembly/helper.ts",
"assembly/integrationConfigProvider.ts",
"assembly/requestResponseHandler.ts",
"assembly/index.ts"
],
"scripts": {
"test": "npx asp --config assembly/__tests__/as-pect.config.js --verbose",
"asbuild:untouched": "asc assembly/index.ts --target debug",
"asbuild:optimized": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"build": "fastly compute build",
"deploy": "fastly compute deploy"
},
"dependencies": {
"@assemblyscript/loader": "^0.19.16",
"@fastly/as-compute": "^0.4.1",
"as-wasi": "^0.4.6",
"assemblyscript-json": "^1.1.0",
"assemblyscript-regex": "^1.6.3"
},
"devDependencies": {
"@as-pect/cli": "^6.2.4",
"@as-pect/core": "^6.2.1",
"assemblyscript": "^0.19.16"
}
}