forked from cypress-io/cypress-react-unit-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
68
{
"name": "cypress-react-unit-test",
"version": "0.0.0-development",
"description": "Unit test React components using Cypress",
"main": "dist",
"module": "lib",
"scripts": {
"test": "cypress run",
"percy:test": "percy exec -- cypress run",
"build": "webpack -d",
"cy:open": "cypress open",
"transpile": "tsc",
"watch": "tsc -w",
"pretest": "npm run lint && npm run transpile",
"lint": "standard --verbose --fix *.js src cypress/integration",
"semantic-release": "semantic-action pre && npm run transpile && npm publish && semantic-action post"
},
"files": [
"dist",
"lib"
],
"types": "lib",
"keywords": [
"react",
"cypress",
"cypress-io",
"test",
"testing"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@cypress/webpack-preprocessor": "1.1.3",
"@percy/cypress": "https://github.com/bahmutov/percy-cypress/releases/download/fix-webpack/percy-cypress-1.0.5.tgz",
"@types/node": "9.6.47",
"axios": "0.18.0",
"babel-loader": "8.0.5",
"css-loader": "2.1.1",
"cypress": "3.2.0",
"github-post-release": "1.13.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"semantic-action": "1.1.6",
"standard": "12.0.1",
"style-loader": "0.23.1",
"typescript": "3.4.3",
"webpack": "4.30.0"
},
"standard": {
"globals": [
"Cypress",
"cy",
"expect"
]
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-react-unit-test.git"
},
"release": {
"analyzeCommits": "simple-commit-message",
"generateNotes": "github-post-release"
}
}