-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@fastly/create-compute",
"version": "0.1.0",
"license": "MIT",
"description": "A CLI for creating new JavaScript (TypeScript) applications on Fastly Compute",
"type": "module",
"bin": "dist/cli/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"prepack": "npm run clean && npm run test && npm run build",
"build": "tsc --build tsconfig.json",
"clean": "rm -rf dist",
"test": "c8 mocha -n no-warnings=86652 -n loader=ts-node/esm --extension ts --require ./src/test/mocha_bootstrap.js ./src/test/testHelpers.ts ./src/test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastly/create-compute-js.git"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@fastly/cli": "^10.14.0",
"command-line-args": "^6.0.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.14.11",
"@types/sinon": "^10.0.15",
"c8": "^7.13.0",
"mocha": "^10.2.0",
"sinon": "^18.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"LICENSE",
"README.md",
"SECURITY.md"
]
}