-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 954 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 954 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
33
34
35
36
37
38
39
40
41
42
{
"name": "@stefftek/planet.js",
"version": "1.0.5",
"description": "Generates 2D Pixelated Images of Planets",
"main": "Planet.js",
"author": "SteffTek",
"license": "Apache-2.0",
"dependencies": {
"perlin-noise": "^0.0.1",
"pureimage": "^0.3.2",
"seeded-perlin-noise": "git+https://github.com/aramperes/seeded-node-perlin-noise.git",
"simplex-noise": "^2.4.0"
},
"devDependencies": {},
"scripts": {
"test": "node test.js",
"start": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SteffTek/planet.js.git"
},
"keywords": [
"planet",
"generation",
"2d",
"procedural",
"generator",
"gas giants",
"gas planets",
"planets",
"stars",
"sun",
"nodejs",
"random",
"generated"
],
"bugs": {
"url": "https://github.com/SteffTek/planet.js/issues"
},
"homepage": "https://github.com/SteffTek/planet.js#readme"
}