-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "tumult",
"author": "Philip Scott",
"version": "0.0.0-development",
"license": "MIT",
"description": "A Javascript noise library",
"main": "index.js",
"unpkg": "dist/tumult.min.js",
"jsdelivr": "dist/tumult.min.js",
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"test": "standard && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "parcel build --global tumult --out-dir dist --out-file tumult.min.js index.js",
"pages": "parcel build demo/index.html --out-dir pages --public-url '.'",
"travis-deploy-once": "travis-deploy-once --pro",
"semantic-release": "semantic-release"
},
"keywords": [
"noise",
"perlin",
"perlin noise",
"simplex",
"simplex noise",
"procedural generation"
],
"dependencies": {
"random-seed": "^0.3.0"
},
"devDependencies": {
"ava": "^1.1.0",
"coveralls": "^3.0.2",
"nyc": "^14.1.1",
"parcel-bundler": "^1.10.3",
"semantic-release": "^15.12.1",
"standard": "^12.0.1",
"terrapaint": "^2.0.1",
"travis-deploy-once": "^5.0.9"
},
"repository": {
"type": "git",
"url": "https://github.com/ScottyFillups/tumult.git"
}
}