-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.26 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": "vtex-nwb-example",
"version": "1.0.0",
"description": "vtex-nwb-example React component",
"main": "lib/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component --copy-files",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "npm run lint && jest --env=jsdom",
"test:coverage": "jest --env=jsdom --coverage",
"test:watch": "jest --env=jsdom --watch",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"dependencies": {},
"peerDependencies": {
"react": "16.x",
"react-intl": "2.x"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.0",
"babel-preset-react-app": "^3.1.1",
"enzyme": "^3.3.0",
"eslint": "^3.19.0",
"eslint-config-vtex": "^8.0.0",
"eslint-config-vtex-react": "^3.0.3",
"eslint-config-vtex-react-app": "^3.1.1",
"eslint-plugin-flowtype": "^2.47.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.8.2",
"i18n-iso-countries": "^3.6.3",
"jest": "^23.0.0",
"jest-enzyme": "^6.0.1",
"nwb": "0.21.x",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-intl": "^2.4.0",
"react-test-renderer": "^16.4.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/tests/setup.js",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/es/",
"<rootDir>/lib/",
"<rootDir>/umd/"
],
"modulePathIgnorePatterns": [
"<rootDir>/es/",
"<rootDir>/lib/",
"<rootDir>/umd/"
],
"transformIgnorePatterns": [
"[/\\\\]lib[/\\\\].+\\.(js|jsx)$",
"[/\\\\]umd[/\\\\].+\\.(js|jsx)$",
"[/\\\\]es[/\\\\].+\\.(js|jsx)$",
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"\\.(css|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)(\\?.*)?$": "<rootDir>/tests/__mocks__/fileMock.js"
},
"modulePaths": ["<rootDir>/src", "<rootDir>/node_modules"],
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
},
"author": "",
"homepage": "",
"license": "MIT",
"repository": "",
"keywords": [
"react-component"
]
}