-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
83 lines (83 loc) · 2.45 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "simplex-noise",
"version": "4.0.3",
"description": "simplex-noise is a fast simplex noise implementation in Javascript. Works in node and in the browser.",
"homepage": "https://github.com/jwagner/simplex-noise.js",
"author": "Jonas Wagner <[email protected]> (http://29a.ch/)",
"main": "dist/cjs/simplex-noise.js",
"module": "dist/esm/simplex-noise.js",
"types": "./dist/esm/simplex-noise.d.ts",
"exports": {
"require": "./dist/cjs/simplex-noise.js",
"import": "./dist/esm/simplex-noise.js"
},
"sideEffects": false,
"files": [
"dist/esm/package.json",
"dist/esm/simplex-noise.js",
"dist/esm/simplex-noise.js.map",
"dist/esm/simplex-noise.d.ts",
"dist/cjs/simplex-noise.js",
"dist/cjs/simplex-noise.js.map",
"dist/cjs/simplex-noise.d.ts",
"simplex-noise.ts"
],
"devDependencies": {
"@parcel/packager-ts": "^2.6.2",
"@parcel/transformer-typescript-types": "^2.6.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"@types/pngjs": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"alea": "^1.0.1",
"benchmark": "^2.1.4",
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"microtime": "^3.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"parcel": "^2.6.2",
"pngjs": "^6.0.0",
"source-map-loader": "^4.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"typedoc": "^0.23.8",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"bugs": {
"url": "https://github.com/jwagner/simplex-noise.js/issues"
},
"keywords": [
"noise",
"random",
"simplex",
"plasma",
"procedural",
"generation",
"gfx",
"generative"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwagner/simplex-noise.js.git"
},
"scripts": {
"start": "parcel test/visual.html",
"test": "eslint simplex-noise.ts && nyc mocha && ./test/module-compatibility.sh",
"coverage": "nyc report",
"build": "./build.sh",
"docs": "typedoc --excludePrivate --out public/docs simplex-noise.ts && cp -R doc public/docs/",
"prepare": "npm run-script build",
"benchmark": "npm run build && cd perf && ./benchmark.sh"
}
}