forked from Prowindy/react-data-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.15 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
{
"name": "react-data-components",
"version": "0.4.0",
"description": "React data components",
"keywords": [
"react",
"react-component",
"table",
"pagination"
],
"author": "Carlos Rocha",
"license": "MIT",
"main": "./lib/index",
"files": [
"css",
"lib",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/carlosrocha/react-data-components"
},
"peerDependencies": {
"react": "^0.13.0"
},
"devDependencies": {
"css-loader": "^0.7.1",
"d3": "^3.4.11",
"flux": "^2.0.3",
"jest-cli": "^0.4.0",
"jsx-loader": "^0.13.1",
"keymirror": "^0.1.1",
"object-assign": "^2.0.0",
"react-tools": "^0.13.2",
"style-loader": "^0.7.1",
"webpack": "^1.8.9",
"webpack-dev-server": "^1.8.2"
},
"scripts": {
"prepublish": "jsx --harmony --no-cache-dir src lib",
"start": "cd example && webpack-dev-server -d --progress --colors --hot --inline",
"test": "jest"
},
"jest": {
"rootDir": "src",
"scriptPreprocessor": "../jest/preprocessor.js",
"unmockedModulePathPatterns": [
"../node_modules/react"
]
}
}