forked from shabegger/flexible-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.95 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
{
"name": "flexible-dnd",
"version": "0.1.0",
"description": "A lightweight React drag-and-drop library",
"main": "lib/index.js",
"scripts": {
"test": "jest --verbose",
"test-debug": "node-debug ~/npm/lib/node_modules/jest-cli/bin/jest.js -i"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react/",
"<rootDir>/node_modules/react-addons-test-utils/",
"<rootDir>/node_modules/react-dom/",
"<rootDir>/node_modules/react-stub-context/",
"<rootDir>/node_modules/redux"
],
"testPathIgnorePatterns": [
"/fixtures/"
],
"testFileExtensions": [
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/shabegger/flexible-dnd.git"
},
"keywords": [
"drag-and-drop",
"dnd",
"react"
],
"author": "Stephen Habegger",
"license": "MIT",
"bugs": {
"url": "https://github.com/shabegger/flexible-dnd/issues"
},
"homepage": "https://github.com/shabegger/flexible-dnd#readme",
"dependencies": {
"react": "^15.3.0",
"redux": "^3.5.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-jest": "^13.0.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"deep-freeze": "0.0.1",
"eslint": "^3.2.2",
"eslint-plugin-react": "^6.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"jest": "^20.0.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"react-stub-context": "^0.7.0",
"run-sequence": "^1.2.2",
"vinyl-source-stream": "^1.1.0"
}
}