-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "bunny-mark",
"version": "2.0.0",
"private": true,
"description": "Simulation for testing Pixi.js performance",
"source": "src/index.html",
"scripts": {
"lint": "eslint src",
"clean": "rimraf dist/*",
"prebuild": "run-s lint clean",
"build": "parcel build --public-url .",
"start": "parcel serve --open",
"predeploy": "run-s build",
"deploy": "gh-pages -d dist -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/bunny-mark.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixijs/bunny-mark/issues"
},
"homepage": "https://github.com/pixijs/bunny-mark#readme",
"devDependencies": {
"@pixi/eslint-config": "^4.0.1",
"eslint": "^8.0.0",
"gh-pages": "^4.0.0",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.7.0",
"rimraf": "^3.0.2"
},
"eslintConfig": {
"extends": [
"@pixi/eslint-config"
],
"globals": {
"PIXI": true,
"$": true,
"Stats": true
}
}
}