-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.75 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.75 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
88
89
90
91
92
93
94
95
96
{
"name": "react-collapsing-table",
"version": "0.5.1",
"description": "react-collapsing-table: a React rewrite of the jQuery table plugin from 'datatables.net'. Inspired by a lack of similar table behaviors, notably collapsibility and responsivity.",
"main": "build/index.js",
"peerDependencies": {
"react": "^15.x.x || ^16.x.x"
},
"dependencies": {
"react": "^16.1.0"
},
"scripts": {
"test": "jest --watch --env=jsdom",
"coverage": "jest --coverage",
"start": "webpack --watch & npm run storybook",
"build": "webpack -p",
"push": "npm run build && npm publish",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"author": "Paul Darragh <pmd6624@rit.edu>",
"devDependencies": {
"@storybook/addon-knobs": "^3.2.16",
"@storybook/addon-options": "^3.2.16",
"@storybook/react": "^3.2.16",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.1",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"faker": "^4.1.0",
"jest": "^21.2.1",
"lodash.clonedeep": "^4.5.0",
"lodash.throttle": "^4.1.1",
"moment": "^2.19.4",
"prop-types": "^15.6.0",
"react-dom": "^16.1.1",
"react-icons": "^2.2.7",
"style-loader": "^0.19.0",
"webpack": "^3.4.1",
"webpack-babel-jest": "^1.0.4"
},
"jest": {
"setupFiles": [
"./src/setupTests.js"
],
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/api/**",
"!**/stylesheets/**",
"!**/build/**",
"!**/coverage/**",
"!**/vendor/**",
"!**/index.js",
"!**/setupTests.js",
"!**/tempPolyfills.js",
"!**/stories/**",
"!**/webpack*.js",
"!**/testUtils/**"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/massmutual/react-collapsing-table.git"
},
"keywords": [
"reactjs, react, table, responsive"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/massmutual/react-collapsing-table/issues"
},
"homepage": "https://github.com/massmutual/react-collapsing-table#readme",
"storybook-deployer": {
"gitUsername": "salinn",
"gitEmail": "pmd6624@rit.edu",
"commitMessage": "Deploy Storybook [skip ci]"
}
}