-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "webgl-memory",
"version": "1.1.1",
"description": "A WebGL memory tracker",
"main": "webgl-memory.js",
"module": "webgl-memory.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"check-ci": "npm run eslint && npm run build && npm run test",
"eslint": "eslint \"**/*.js\"",
"pre-push": "npm run eslint && npm run test",
"test": "npm run test-browser",
"test-browser": "node test/puppeteer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greggman/webgl-memory.git"
},
"keywords": [
"webgl"
],
"author": "Gregg Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/greggman/webgl-memory/issues"
},
"files": [
"webgl-memory.js"
],
"homepage": "https://github.com/greggman/webgl-memory#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.57.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-one-variable-per-var": "^0.0.3",
"eslint-plugin-optional-comma-spacing": "^0.0.4",
"eslint-plugin-require-trailing-comma": "^0.0.1",
"express": "^4.19.2",
"puppeteer": "^22.11.0",
"rollup": "^4.18.0"
}
}