forked from cypress-io/cypress-react-unit-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 KB
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
{
"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",
"build": "webpack -d",
"cy:open": "cypress open",
"transpile": "tsc",
"pretest": "npm run lint",
"lint": "standard --verbose --fix *.js src cypress/integration",
"semantic-release": "semantic-action pre && npm run transpile && npm publish && semantic-action post"
},
"files": [
"dist",
"lib"
],
"keywords": [
"react",
"cypress",
"cypress-io",
"test",
"testing"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "ISC",
"devDependencies": {
"@cypress/webpack-preprocessor": "1.1.3",
"@types/node": "9.6.22",
"axios": "0.18.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"cypress": "3.1.0",
"github-post-release": "1.13.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"semantic-action": "1.1.6",
"standard": "11.0.1",
"typescript": "2.9.2",
"webpack": "4.13.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"
}
}