-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "webpack-glsl-minify",
"version": "1.5.0",
"author": "Leo C. Singleton IV <[email protected]>",
"description": "GLSL Loader, Preprocessor, and Minifier for Webpack",
"homepage": "https://github.com/leosingleton/webpack-glsl-minify",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/leosingleton/webpack-glsl-minify.git"
},
"dependencies": {
"glob": "^7.2.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/glob": "^7.2.0",
"@types/jasmine-node": "^1.14.36",
"@types/webpack": "^5.28.0",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-leosingleton": "github:leosingleton/eslint-config-leosingleton",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.2",
"jasmine": "^4.0.2",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"scripts": {
"build": "npx tsc",
"clean": "rm -rf ./build",
"lint": "npx eslint \"**/*.ts\" \"**/*.js\"",
"test": "npx nyc -r cobertura -r text ./node_modules/jasmine/bin/jasmine.js ./build/__tests__/*.test.js --output=build/"
},
"files": [
"bin/*",
"build/*.d.ts",
"build/*.js"
],
"bin": {
"webpack-glsl-minify": "bin/webpack-glsl-minify",
"wgm": "bin/wgm"
},
"main": "build/index.js",
"types": "build/index.d.ts"
}