-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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
46
47
48
49
{
"name": "block-fractal",
"version": "2.0.2",
"description": "Generates a blocky fractal-like shape, like a tile-based randomized koch curve",
"keywords": [
"fractal",
"roguelike",
"procedural"
],
"author": "James Clark <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/sbj42/block-fractal.git",
"files": [
"lib"
],
"scripts": {
"test": "jest --coverage",
"lint": "eslint \"src/**/*.ts\" && tsc --noEmit",
"build": "rimraf lib && tsc",
"dist": "rimraf dist && webpack --mode development && webpack --mode production",
"prepublish": "npm run build",
"demo:build": "cd demo && webpack",
"demo": "cd demo && webpack serve",
"benchmark": "high-score"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/seedrandom": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"high-score": "^0.1.0",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"seedrandom": "^3.0.5",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"tiled-geometry": "^1.0.0"
}
}