-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.49 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "pixelmap.io",
"version": "1.0.0",
"description": "A little over a decade ago, a website called MillionDollarHomePage.com was created by Alex Tew. The page consisted (and still consists) of a 1000x1000 pixel grid, with a total of 1,000,000 pixels being sold for $1 each. Because the pixels themselves were too small to be seen individually, they were sold in 10x10 pixel tiles for $100 each. The purchasers of each tile then provided a 10x10 pixel image to be used, as well as optionally a URL for the tile to link to. Once an image had been configured for a given tile however, it could never be changed (nor could the ownership of the tile).",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "pnpm run test:frontend && pnpm run test:backend",
"test:frontend": "cd frontend && pnpm test",
"test:backend": "cd backend && go test ./...",
"test:coverage": "pnpm run test:frontend:coverage && pnpm run test:backend:coverage",
"test:frontend:coverage": "cd frontend && pnpm run test:coverage",
"test:backend:coverage": "cd backend && go test ./... -coverprofile=coverage.out && go tool cover -html=coverage.out -o coverage.html",
"test:coverage:combined": "pnpm run test:coverage && node ./combine-coverage.js",
"codecov": "pnpm run test:coverage && node ./combine-coverage.js && curl -Os https://uploader.codecov.io/latest/linux/codecov && chmod +x codecov && ./codecov"
},
"author": "",
"license": "ISC",
"dependencies": {
"typescript": "^5.6.2"
}
}