-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
84 lines (84 loc) · 2.6 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
{
"name": "react-sticky-table",
"description": "Dynamically sized fixed header and columns for tables",
"version": "5.1.11",
"author": "Henrybuilt",
"bugs": {
"url": "https://github.com/henrybuilt/react-sticky-table/issues"
},
"dependencies": {
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-modules-umd": "7.2.0",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.4",
"@babel/runtime": "7.4.5",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"babel-eslint": "10.0.2",
"babel-loader": "8.0.6",
"chai": "4.2.0",
"core-js": "3.1.4",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "6.0.1",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-react": "^7.0.1",
"ignore-styles": "^5.0.1",
"jsdom": "15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^7.1.2",
"nodemon": "^1.9.1",
"prop-types": "^15.5.7",
"react": "^16.13.1",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.2",
"sinon": "7.3.2"
},
"homepage": "https://github.com/henrybuilt/react-sticky-table",
"keywords": [
"column",
"fixed",
"header",
"react-component",
"sticky",
"table",
"table",
"table"
],
"license": "MIT",
"main": "dist/index.js",
"options": {
"mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js --require ignore-styles --require src/__tests__/config.js"
},
"peerDependencies": {
"prop-types": "^15.5.7",
"react": ">=16.0.0",
"react-dom": " ^16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/henrybuilt/react-sticky-table.git"
},
"scripts": {
"build": "npm run build-js",
"build-js": "babel --plugins '@babel/plugin-transform-modules-umd' src --ignore __tests__ --out-dir ./dist",
"build-storybook": "build-storybook -o ./docs",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"storybook": "start-storybook -p 6006",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"testonly": "BABEL_ENV=test && mocha $npm_package_options_mocha",
"build-all": "npm run build && npm run build-storybook && git add -A && git commit -am \"built\"",
"prepublishOnly": "npm run build && npm version patch && git push"
},
"source": "src/index.js"
}