-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.39 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.39 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
84
85
86
87
{
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"codecov": "^2.3.0",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"istanbul": "^0.4.5",
"jest": "^20.0.4",
"jest-localstorage-mock": "^1.2.0",
"react-test-renderer": "^15.6.1",
"webpack": "^3.4.1"
},
"dependencies": {
"eslint-config-react-app": "^1.0.5",
"eslint-plugin-flowtype": "^2.33.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"name": "test-react",
"version": "1.0.0",
"main": "webpack.config.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js ./src",
"dist": "babel src --out-dir dist",
"test": "./node_modules/.bin/jest --coverage --verbose",
"codecov": "codecov --token=f5fbeb0b-9b44-4a68-bb7e-dcc4ca7bb1f8"
},
"author": "claudio.dcv@gmail.com",
"license": "ISC",
"description": "table pure server side, compatible Django REST Framework",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!src/conector/ajax.js",
"!src/plugins/**"
],
"setupFiles": [
"<rootDir>/config/polyfills.js",
"jest-localstorage-mock"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
}
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
}
}