-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.59 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
{
"name": "@excaliburjs/plugin-perlin",
"version": "0.30.0",
"description": "Perlin noise generator for the Excalibur game engine",
"main": "dist/excalibur-perlin.min.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config webpack.config.test.js --open",
"watch": "webpack --progress --watch",
"build": "cross-env NODE_ENV=production webpack",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "karma start",
"test:integration": "webpack --config webpack.config.test.js && tsc ./test/integration/tests.ts && node ./test/integration/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excaliburjs/excalibur-perlin.git"
},
"author": "Erik Onarheim",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/excaliburjs/excalibur-perlin/issues"
},
"homepage": "https://github.com/excaliburjs/excalibur-perlin#readme",
"devDependencies": {
"@types/jasmine": "5.1.5",
"@types/node": "22.10.3",
"@types/webpack-env": "1.18.5",
"cross-env": "7.0.3",
"excalibur": "~0.30.1",
"excalibur-jasmine": "0.3.8",
"jasmine-core": "5.5.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "5.1.0",
"karma-webpack": "5.0.1",
"node-static": "0.7.11",
"pixelmatch": "5.3.0",
"pngjs": "6.0.0",
"puppeteer": "22.15.0",
"ts-loader": "9.5.1",
"typescript": "5.7.2",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.2.0"
},
"peerDependencies": {
"excalibur": "~0.30.1"
}
}