forked from reactabular/reactabular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.41 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": "reactabular",
"version": "0.7.0",
"description": "Spectacular tables for React.js",
"scripts": {
"start": "TARGET=dev node dev-server/server.js",
"test": "jest && npm run lint",
"gh-pages": "TARGET=gh-pages webpack --colors",
"deploy-gh-pages": "TARGET=gh-pages node ./lib/deploy-gh-pages.js",
"dist": "TARGET=dist webpack --colors && TARGET=dist-min webpack --colors",
"dist-modules": "babel ./src --out-dir ./dist-modules",
"lint": "eslint . --ext .js --ext .jsx",
"preversion": "npm run test && npm run dist && npm run dist-modules && git commit --allow-empty -am \"Update dist\""
},
"repository": {
"type": "git",
"url": "https://github.com/bebraw/reactabular.git"
},
"keywords": [
"react",
"reactjs",
"table",
"tables"
],
"author": "Juho Vepsalainen <[email protected]> (http://github.com/bebraw)",
"license": "MIT",
"main": "dist-modules/index.js",
"bugs": {
"url": "https://github.com/bebraw/reactabular/issues"
},
"homepage": "https://bebraw.github.io/reactabular/",
"dependencies": {
"classnames": "^2.1.1"
},
"devDependencies": {
"annogenerate": "^0.8.1",
"annomath": "^0.4.1",
"babel": "^5.4.7",
"babel-core": "^5.4.3",
"babel-eslint": "^3.1.1",
"babel-loader": "^5.1.0",
"css-loader": "^0.12.0",
"eslint": "^0.21.0",
"eslint-plugin-react": "^2.2.0",
"file-loader": "^0.8.1",
"gh-pages": "^0.3.0",
"highlight.js": "^8.5.0",
"html-loader": "^0.3.0",
"html-webpack-plugin": "^1.3.0",
"jest-cli": "^0.4.3",
"lodash": "^3.8.0",
"marked": "^0.3.3",
"node-libs-browser": "^0.5.0",
"plexus-form": "^0.1.2",
"plexus-validate": "^0.0.4",
"purecss": "^0.6.0",
"react": "^0.13.3",
"react-ghfork": "^0.3.0",
"react-hot-loader": "^1.2.7",
"react-pagify": "^0.6.0",
"react-skylight": "^0.2.0",
"react-tools": "^0.13.3",
"schema2object": "^0.4.0",
"style-loader": "^0.12.2",
"title-case": "^1.1.1",
"url-loader": "^0.5.5",
"webpack": "^1.9.4",
"webpack-dev-server": "^1.8.2",
"xtend": "^4.0.0"
},
"peerDependencies": {
"lodash": ">= 3.5.0 < 4.0.0",
"react": ">= 0.11.2 < 1.0.0"
},
"jest": {
"scriptPreprocessor": "./lib/preprocessor.js",
"unmockedModulePathPatterns": [
"./node_modules/annotate",
"./node_modules/lodash",
"./node_modules/react",
"./lib/editors"
]
}
}