-
Notifications
You must be signed in to change notification settings - Fork 5
/
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/next-compute-js",
"version": "2.0.0",
"license": "MIT",
"description": "Next.js for Fastly Compute",
"type": "module",
"bin": "./dist/node/cli/index.js",
"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/next-compute-js.git"
},
"dependencies": {
"command-line-args": "^5.2.1",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"@fastly/js-compute": "^3.1.1",
"@types/command-line-args": "^5.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.13",
"@types/nunjucks": "^3.2.2",
"@types/sinon": "^10.0.15",
"assert": "^2.0.0",
"c8": "^7.13.0",
"mocha": "^10.2.0",
"sinon": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"resources/**/*",
"LICENSE",
"README.md",
"SECURITY.md"
]
}