forked from BD2KGenomics/react-data-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.31 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
{
"name": "react-data-components",
"version": "0.5.0",
"description": "React data components",
"keywords": [
"pagination",
"react",
"react-component",
"table"
],
"author": "Carlos Rocha",
"license": "MIT",
"main": "./lib/index",
"files": [
"CHANGELOG.md",
"LICENSE",
"css",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/carlosrocha/react-data-components"
},
"babel": {
"stage": 0
},
"peerDependencies": {
"react": "^0.13.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.8",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.1",
"d3": "^3.5.6",
"eslint": "^1.1.0",
"eslint-plugin-react": "^3.2.2",
"flux": "^2.0.3",
"jest-cli": "^0.5.0",
"rimraf": "^2.4.2",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
},
"scripts": {
"lint": "eslint src",
"preversion": "webpack -p && git add dist",
"prepublish": "rimraf lib && babel src -d lib",
"start": "webpack-dev-server -d --config example/webpack.config.js",
"test": "npm run lint && jest"
},
"jest": {
"testPathDirs": [
"src"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}