-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·101 lines (101 loc) · 2.92 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-epg",
"description": "TV guide style EPG component for React",
"version": "0.1.1",
"author": "Sam Boylett",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "webpack && flow-copy-source lib dist",
"lint": "eslint lib && eslint test/spec",
"flow": "./node_modules/.bin/flow",
"test": "NODE_ENV=test jest --coverage",
"test:watch": "NODE_ENV=test jest --watch",
"test:mutate": "NODE_ENV=test stryker run",
"codecov": "codecov",
"doc": "jsdoc -c jsdoc.json --debug -p",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"testMatch": [
"**/test/spec/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/.stryker-tmp/"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"lib/**/*.js",
"!**/node_modules/**",
"!**/test/**"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"lines": 100,
"functions": 100
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/samboylett/react-epg"
},
"license": "GNU GPLv3",
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"devDependencies": {
"@storybook/addon-actions": "^4.0.0-alpha",
"@storybook/addon-links": "^4.0.0-alpha",
"@storybook/addons": "^4.0.0-alpha",
"@storybook/react": "^4.0.0-alpha",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"codecov": "^3.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-react": "^7.9.1",
"flow-babel-webpack-plugin": "^1.1.1",
"flow-bin": "^0.73.0",
"flow-copy-source": "^2.0.1",
"ink-docstrap": "^1.3.2",
"jest": "^22.4.3",
"jest-enzyme": "^6.0.1",
"jsdoc": "^3.5.5",
"jsdoc-babel": "^0.4.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"stryker": "^0.23.0",
"stryker-api": "^0.17.0",
"stryker-babel-transpiler": "^0.5.0",
"stryker-html-reporter": "^0.14.0",
"stryker-javascript-mutator": "^0.7.0",
"stryker-jest-runner": "^0.6.0",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3"
}
}