This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
84
85
{
"name": "@wizardsoftheweb/opensimplex-noise",
"version": "0.1.0",
"description": "JS OpenSimplex Noise Generator",
"engines": {
"node": ">=6",
"npm": ">=3"
},
"main": "index.js",
"scripts": {
"benchmark": "cross-env node_modules/.bin/ts-node benchmarks/benchmarks",
"test": "cross-env NODE_ENV=test nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build:docs": "typedoc --exclude \"!**/src/**/*.ts\" --out ./docs/ --readme \"none\" --mode file --module \"commonjs\" --gitRevision \"dev\""
},
"author": {
"name": "CJ Harries",
"email": "[email protected]",
"url": "https://wizardsoftheweb.pro/"
},
"repository": {
"type": "git",
"url": "git://github.com/wizardsoftheweb/opensimplex-noise.git"
},
"bugs": {
"url": "https://github.com/wizardsoftheweb/opensimplex-noise/issues"
},
"homepage": "https://github.com/wizardsoftheweb/opensimplex-noise#readme",
"license": "ISC",
"keywords": [
"opensimplex",
"simplex",
"noise",
"perlin"
],
"devDependencies": {
"@types/bluebird": "^3.5.8",
"@types/chai": "^4.0.4",
"@types/long": "^3.0.32",
"@types/microtime": "^2.1.0",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.25",
"@types/shelljs": "^0.7.4",
"@types/sinon": "^2.3.3",
"@types/winston": "^2.3.5",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"markdown-toc": "^1.1.0",
"microtime": "^2.1.6",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"shelljs": "^0.7.8",
"sinon": "^3.2.1",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typedoc": "^0.8.0",
"typescript": "^2.4.2",
"winston": "^2.3.1"
},
"dependencies": {
"bluebird": "^3.5.0",
"long": "^3.2.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*interfaces.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary"
],
"all": true
}
}