-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.53 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@decathlon/moon-testing",
"version": "0.1.2",
"description": "Moon testing utilities.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Decathlon/moon-testing"
},
"bugs": {
"url": "https://github.com/Decathlon/moon-testing/issues"
},
"homepage": "https://github.com/Decathlon/moon-testing/blob/master/README.md",
"files": [
"dist"
],
"peerDependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@decathlon/moon": "~2.0.6",
"@testing-library/react": "~10.0.6",
"@types/axios": "~0.14.0",
"@types/jest": "~25.2.3",
"@types/node": "~14.0.9",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@typescript-eslint/eslint-plugin": "~3.1.0",
"@typescript-eslint/parser": "~3.1.0",
"axios": "~0.19.0",
"eslint": "~7.1.0",
"eslint-config-airbnb": "~18.1.0",
"eslint-config-prettier": "~6.11.0",
"eslint-formatter-pretty": "~3.0.1",
"eslint-plugin-import": "~2.20.2",
"eslint-plugin-jest": "~23.13.2",
"eslint-plugin-jsx-a11y": "~6.2.3",
"eslint-plugin-react": "~7.20.0",
"husky": "~4.2.5",
"jest": "~26.0.1",
"prettier": "~2.0.5",
"prettier-check": "~2.0.0",
"react": "~16.13.1",
"react-dom": "~16.13.1",
"rimraf": "~3.0.0",
"ts-jest": "~26.1.0",
"ts-loader": "~7.0.5",
"typescript": "~3.9.3"
},
"scripts": {
"build": "rimraf dist && tsc",
"prepublish": "npm run build",
"test": "npm run test:unit",
"test:unit": "jest",
"test:watch": "npm run test:unit -- --watch",
"test:generate-output": "jest --json --outputFile=jest-test-results.json",
"precoverage": "npm run pretest && rimraf coverage/",
"coverage": "npm run test:unit -- --coverage",
"pretest": "rimraf tests.entry.js.map test/results.xml",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./",
"lint:prettier": "prettier-check \"src/**/*.{html,js,json,md,mdx,ts,tsx}\"",
"format": "npm run format:prettier && npm run format:eslint",
"format:eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --fix ./",
"format:prettier": "prettier --write \"./**/*.{html,js,json,md,mdx,ts,tsx}\""
},
"keywords": [
"react",
"typescript",
"rest-client",
"moon",
"testing"
],
"author": "Decathlon",
"license": "Apache-2.0",
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint"
}
},
"dependencies": {}
}