forked from henrybuilt/react-sticky-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.5 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
{
"name": "experium-react-sticky-table",
"version": "1.3.0",
"main": "index.js",
"module": "./index.js",
"description": "Dynamically sized fixed header and columns for tables",
"repository": {
"type": "git",
"url": "https://github.com/experium/react-sticky-table.git"
},
"author": "Weflow",
"license": "MIT",
"bugs": {
"url": "https://github.com/experium/react-sticky-table/issues"
},
"homepage": "https://github.com/experium/react-sticky-table",
"keywords": [
"react-component",
"table",
"sticky",
"table",
"fixed",
"table",
"header",
"column"
],
"options": {
"mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js --require ignore-styles --require src/__tests__/config.js"
},
"scripts": {
"start": "webpack-dev-server",
"build": "npm run build-js && npm run build-css",
"build-js": "babel --plugins 'transform-es2015-modules-umd' src --ignore __tests__ --out-dir ./dist",
"build-css": "cat src/**/*.css src/*.css > dist/react-sticky-table.css",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js"
},
"devDependencies": {
"babel-cli": "^6.24.1 ",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "7.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.0.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"ignore-styles": "^5.0.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"sinon": "^1.17.3",
"style-loader": "^0.17.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.4"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": " ^15.0.0 || ^16.0.0",
"prop-types": "^15.0.0"
},
"dependencies": {
"element-resize-event": "^3.0.3"
}
}