-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 937 Bytes
/
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
{
"name": "cypress-protobuf",
"version": "1.0.5",
"description": "Encode a Cypress fixture with Protocol Buffers",
"main": "src/index.js",
"repository": "https://github.com/NoriSte/cypress-protobuf.git",
"author": "NoriSte <nori.ste.magni@gmail.com>",
"keywords": [
"cypress",
"cypress plugin",
"protobuf",
"protocol buffers"
],
"license": "MIT",
"devDependencies": {
"cz-conventional-changelog": "3.3.0",
"start-server-and-test": "1.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"commit": "npx git-cz",
"serve": "npx serve public",
"cy:open": "cypress open",
"test": "npm run cy:start-server-and-test",
"cy:start-server-and-test": "npx start-server-and-test serve :5000 cy:run",
"cy:run": "cypress run"
},
"dependencies": {
"cypress": "^4.0.0",
"protobufjs": "6.10.1"
}
}