This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
forked from mikeric/react-anything-sortable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.12 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
{
"name": "react-anything-sortable",
"version": "1.7.2",
"description": "A ReactJS component that can drag and sort any children with IE8 compatibility",
"main": "lib/index.js",
"scripts": {
"watch": "./node_modules/.bin/webpack --config webpack.conf.js",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.conf.js",
"test": "./node_modules/karma/bin/karma start test/karma.conf.js",
"demo:build": "NODE_ENV=production ./node_modules/.bin/webpack --config demo/webpack.config.js",
"demo:watch": "./node_modules/.bin/webpack-dev-server --inline --config demo/webpack.config.js --content-base demo --port 8722 --host 0.0.0.0",
"gh-pages": "git checkout gh-pages && git reset --hard master && npm run demo:build && git add . && git commit -m 'update demo' && git push -f origin gh-pages && git checkout master"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonslyvia/react-anything-sortable.git"
},
"keywords": [
"react-component",
"react",
"sortable"
],
"author": "jasonslyvia",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonslyvia/react-anything-sortable/issues"
},
"homepage": "https://github.com/jasonslyvia/react-anything-sortable",
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-loader": "~5.3.2",
"chai": "^2.2.0",
"chai-spies": "^0.5.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"istanbul-instrumenter-loader": "~0.1.3",
"karma": "^0.13.3",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.1",
"react": "~0.14.0",
"react-dom": "~0.14.0",
"react-router": "^2.0.1",
"webpack": "~1.12.2",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"create-react-class": "^15.5.2",
"prop-types": "^15.5.8"
}
}