forked from mcjohnalds/react-table-drag-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.54 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
{
"name": "react-table-drag-select",
"version": "0.2.3",
"description": "React component for drag selecting table cells",
"keywords": [
"react",
"component",
"table",
"select",
"cell",
"cells",
"timetable",
"schedule"
],
"url": "https://github.com/mcjohnalds/react-table-drag-select",
"bugs": "https://github.com/mcjohnalds/react-table-drag-select/bugs",
"license": "MIT",
"author": {
"name": "John Owen",
"email": "[email protected]",
"url": "https://github.com/mcjohnalds"
},
"files": [
"lib",
"style.css"
],
"main": "lib",
"repository": "mcjohnalds/react-table-drag-select",
"scripts": {
"build-js": "babel -s true -d lib src",
"build-docs": "webpack",
"build-all": "npm run build-js && npm run build-docs",
"test": "npm run build-js && mocha --compilers js:babel-core/register",
"prepublish": "NODE_ENV=production npm run build-all",
"start": "webpack-dev-server"
},
"dependencies": {
"clone": "^2.1.1",
"deep-is": "^0.1.3",
"react": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-babili": "0.0.12",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^0.28.1",
"html-webpack-plugin": "^2.28.0",
"mocha": "^3.3.0",
"react-dom": "^15.5.4",
"style-loader": "^0.17.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
}
}