-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 911 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 911 Bytes
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
{
"name": "boids",
"description": "An implementation of boids",
"repository": {
"type": "git",
"url": "https://github.com/fildon/fildon.github.io"
},
"license": "MIT",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build:js": "esbuild src/index.ts --bundle --minify --outfile=dist/index.js",
"copystaticfiles": "copyfiles -f src/staticFiles/* dist",
"build": "npm run build:js && npm run copystaticfiles",
"lint": "yarn eslint . --ext .ts",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.12.6",
"eslint": "^7.28.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.4",
"ts-jest": "^27.0.2",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2"
}
}