-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.88 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
{
"name": "react-dnd-item",
"version": "0.2.1",
"description": "A draggable and droppable item comopnent for React",
"main": "lib/index.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --content-base examples/ --config webpack-dev.config.js",
"prepublish": "rm -rf lib && ./node_modules/.bin/webpack",
"build": "rm -rf lib && ./node_modules/.bin/webpack",
"test": "BABEL_JEST_STAGE=0 jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t-hiroyoshi/react-dnd-item.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"react-dnd",
"dnd",
"drag",
"drop",
"draggable",
"droppable",
"component"
],
"author": "Hiroyoshi Takahashi <t.hiroyoshi209@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/t-hiroyoshi/react-dnd-item/issues"
},
"homepage": "https://github.com/t-hiroyoshi/react-dnd-item#readme",
"dependencies": {
"react": "^0.14.2",
"react-dnd": "^2.0.2",
"react-dnd-html5-backend": "^2.0.0",
"react-dom": "^0.14.2"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-jest": "^10.0.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"jest-cli": "^0.10.0",
"jest-webpack-alias": "^2.0.0",
"react-addons-test-utils": "^0.14.2",
"react-dnd-test-backend": "^1.0.0",
"webpack": "^1.12.6",
"webpack-dev-server": "^1.12.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"testDirectoryName": "test",
"testPathIgnorePatterns": [
"preprocessor",
"/node_modules/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/*"
]
},
"jest-webpack-alias": {
"configFile": "webpack.config.js"
}
}