-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 944 Bytes
/
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
{
"name": "open-simplex-noise",
"version": "2.5.0",
"description": "OpenSimplex noise for TypeScript/JavaScript",
"keywords": [
"noise",
"open-simplex-noise",
"procedural-generation",
"simplex-noise"
],
"homepage": "https://github.com/joshforisha/open-simplex-noise-js#readme",
"author": "Josh Forisha <[email protected]>",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/joshforisha/open-simplex-noise-js.git"
},
"bugs": {
"url": "https://github.com/joshforisha/open-simplex-noise-js/issues"
},
"contributors": [
"Florian Völker <[email protected]>"
],
"files": [
"lib/"
],
"main": "lib/mod.js",
"types": "lib/mod.d.ts",
"scripts": {
"compile": "tsc && denoify",
"test": "tsc --noEmit && deno test deno_lib",
"watch": "tsc --watch"
},
"devDependencies": {
"denoify": "^0.6.5",
"typescript": "^4.2.4"
}
}