-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.64 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
56
57
58
59
60
61
62
63
64
{
"name": "protobufjs-loader",
"version": "0.0.0-development",
"description": "Webpack loader to translate .proto definitions to ProtoBuf.js modules",
"main": "index.js",
"scripts": {
"check": "tsc",
"fix:script": "eslint --fix .",
"fix:style": "prettier --write .",
"fix": "npm run fix:script && npm run fix:style",
"lint:script": "eslint .",
"lint:style": "prettier -c .",
"lint": "npm run lint:script && npm run lint:style",
"test": "mocha test/*.test.js"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"webpack",
"protobuf",
"protobufjs",
"ProtoBuf.js"
],
"author": "Kevin Montag <[email protected]>",
"license": "MIT",
"dependencies": {
"protobufjs": "^7.0.0",
"protobufjs-cli": "^1.0.0",
"schema-utils": "^4.0.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/glob": "^7.2.0",
"@types/loader-utils": "^2.0.3",
"@types/memory-fs": "^0.3.3",
"@types/mocha": "^9.1.1",
"@types/tmp": "^0.2.3",
"chai": "^4.1.2",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.0.5",
"glob": "^7.2.3",
"inspect-loader": "^1.0.0",
"memory-fs": "^0.5.0",
"mocha": "^9.2.2",
"prettier": "^2.7.1",
"semantic-release": "^22.0.2",
"semver": "^7.5.4",
"typescript": "^4.7.4",
"uglify-js": "^3.16.2",
"webpack": "^5.0.0"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kmontag/protobufjs-loader.git"
}
}