-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.58 KB
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
{
"name": "react-sortable-grid",
"version": "0.1.2",
"description": "Drag&drop sortable grid.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/laskos/react-sortable-grid.git"
},
"keywords": [
"react",
"draggable",
"sortable",
"drag&drop",
"grid",
"react-component"
],
"scripts": {
"build": "webpack index.js dist/ReactSortableGrid.js",
"build-min": "webpack -p index.js dist/ReactSortableGrid.min.js",
"test": "npm run lint && npm run mocha",
"mocha": "mocha --compilers js:babel/register src/**/*.test.js",
"demo": "npm run build-demo;webpack-dev-server --config webpack.config.demo.js --hot --inline",
"start": "npm run demo",
"build-demo": "webpack --config webpack.config.demo.js",
"coverage": "babel-istanbul cover _mocha -- src/**/*.test.js",
"lint": "eslint src",
"esdoc": "esdoc -c esdoc.json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-istanbul": "^0.4.1",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"esdoc": "^0.4.0",
"esdoc-es7-plugin": "0.0.3",
"eslint": "^1.7.3",
"eslint-plugin-react": "^3.6.3",
"expect.js": "^0.3.1",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.2",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"npm": "^3.3.6",
"react": "^0.14.2",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.1",
"sinon": "^1.17.1",
"webpack": "^1.12.2",
"webpack-dev-server": "1.10.1"
}
}