This repository has been archived by the owner on Mar 30, 2021. It is now read-only.
forked from henrybuilt/react-sticky-table
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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
{
"name": "react-sticky-table",
"version": "2.0.4",
"main": "index.js",
"module": "./index.js",
"description": "Dynamically sized fixed header and columns for tables",
"repository": {
"type": "git",
"url": "https://github.com/henrybuilt/react-sticky-table.git"
},
"author": "Weflow",
"license": "MIT",
"bugs": {
"url": "https://github.com/henrybuilt/react-sticky-table/issues"
},
"homepage": "https://github.com/henrybuilt/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": {
"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.26.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"eslint": "^4.0.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.0.1",
"ignore-styles": "^5.0.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"prop-types": "^15.5.7",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"sinon": "^1.17.3"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": " ^15.0.0",
"prop-types": "^15.5.7"
}
}