-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.83 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
65
66
67
{
"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 <kmontag@cs.stanford.edu>",
"license": "MIT",
"dependencies": {
"protobufjs": "^7.0.0",
"protobufjs-cli": "^1.0.0",
"schema-utils": "^4.0.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/chai": "^4.3.1",
"@types/glob": "^8.0.0",
"@types/loader-utils": "^2.0.3",
"@types/mocha": "^9.1.1",
"@types/tmp": "^0.2.3",
"chai": "^4.1.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mocha": "^10.5.0",
"glob": "^8.0.0",
"inspect-loader": "^1.0.0",
"memfs": "^4.15.3",
"mocha": "^9.2.2",
"prettier": "^2.7.1",
"semantic-release": "^24.2.1",
"typescript": "^4.7.4",
"uglify-js": "^3.19.3",
"webpack": "^5.0.0"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kmontag/protobufjs-loader.git"
}
}