-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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
{
"name": "asm-noise",
"version": "1.0.6",
"description": "An implementation of noise algorithms in asm.js.",
"main": "./dist/asm-noise.js",
"module": "./src/index.mjs",
"unpkg": "./dist/asm-noise.js",
"types": "./src/index.d.ts",
"scripts": {
"start": "webpack-dev-server --open --config webpack/webpack.development.js",
"build": "webpack --config webpack/webpack.production.js",
"deploy": "npx gh-pages -d examples",
"prepublish": "npm run build",
"benchmark": "node ./benchmark/index.mjs",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WesleyClements/asm-noise.git"
},
"keywords": [
"fast",
"noise",
"perlin",
"OpenSimplex",
"function",
"asm",
"asm.js",
"procedural",
"generation",
"generator",
"generate",
"2D",
"3D",
"4D"
],
"author": "Wesley Clements <wesley.clements@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WesleyClements/asm-noise/issues"
},
"homepage": "https://github.com/WesleyClements/asm-noise#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@types/jest": "^27.4.1",
"babel-loader": "^8.2.3",
"benchmark": "^2.1.4",
"eslint": "^8.11.0",
"gh-pages": "^3.2.3",
"jest": "^27.5.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}