-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 826 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
{
"name": "proc-noise",
"version": "0.0.1",
"description": "Processing's implementation of Perlin noise.",
"homepage": "https://github.com/cyle/proc-noise-node",
"keywords": [
"perlin noise",
"perlin",
"noise",
"simplex"
],
"bugs": {
"url": "http://github.com/cyle/proc-noise-node/issues",
"email": "[email protected]"
},
"author": "Cyle Gage <[email protected]> (http://cylegage.com/)",
"repository": {
"type": "git",
"url": "https://github.com/cyle/proc-noise-node.git"
},
"main": "./lib/proc-noise",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"alea": "0.0.9"
},
"directories": {
"test": "test"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "BSD-2-Clause"
}