forked from reactabular/reactabular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.42 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"private": true,
"name": "reactabular",
"version": "1.0.0",
"description": "Spectacular tables for React",
"scripts": {
"bootstrap": "lerna bootstrap",
"init": "npm install && lerna bootstrap",
"start": "webpack-dev-server",
"test": "jest --",
"test:coverage": "jest --coverage --",
"test:watch": "jest --watch --",
"test:lint": "eslint . --ext .js --ext .jsx --cache",
"gh-pages:build-and-deploy": "npm run gh-pages:build && npm run gh-pages:deploy",
"gh-pages:build": "webpack",
"gh-pages:deploy": "gh-pages -d gh-pages",
"gh-pages:stats": "webpack --json --profile > stats.json",
"dist:update": "npm run dist:all && git commit --allow-empty -am \"Update dist\"",
"dist:all": "npm run dist:build && npm run dist:build-min",
"dist:build": "webpack",
"dist:build-min": "webpack",
"postinstall": "node lib/post_install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/reactabular/reactabular.git"
},
"keywords": [
"react",
"reactjs",
"table",
"tables"
],
"files": [
"lib/post_install.js",
"lerna.json",
"packages/**/*.js"
],
"author": "Juho Vepsalainen <bebraw@gmail.com> (http://github.com/bebraw)",
"license": "MIT",
"main": "packages/reactabular",
"bugs": {
"url": "https://github.com/reactabular/reactabular/issues"
},
"homepage": "http://reactabular.js.org/",
"jest": {
"collectCoverage": true,
"moduleFileExtensions": ["js", "jsx"],
"moduleDirectories": ["node_modules", "packages"]
},
"dependencies": {},
"devDependencies": {
"annogenerate": "^0.8.1",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.9",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.16.3",
"catalog": "bebraw/catalog#reactabular",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.13",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.0",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"git-prepush-hook": "^1.0.1",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.22.0",
"jest": "^16.0.1",
"lerna": "2.0.0-beta.30",
"lodash": "^4.16.4",
"purecss": "^0.6.0",
"raw-loader": "^0.5.1",
"react": "^15.3.2",
"react-addons-perf": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.3.2",
"react-github-corner": "^0.3.0",
"react-pagify": "^2.1.1",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"schema2object": "^0.4.0",
"segmentize": "^0.4.1",
"style-loader": "^0.13.1",
"stylesheet-helpers": "^0.2.2",
"url-loader": "^0.5.7",
"uuid": "^2.0.3",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^0.14.1"
},
"pre-push": [
"test:lint",
"test"
]
}