forked from danielstocks/react-sortable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "@bengler/react-sortable",
"version": "1.0.7",
"description": "Make your React components sortable.",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"reinstall": "rm -rf node_modules && npm i",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/danielstocks/react-sortable/"
},
"keywords": [
"React",
"sortable",
"sorting",
"drag",
"drop",
"dragndrop",
"draganddrop"
],
"author": "Daniel Stocks <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.7.7",
"react": "^0.14.8",
"react-dom": "^0.14.8"
},
"devDependencies": {
"babel-cli": "^6.5.2",
"babel-core": "6.7.x",
"babel-jest": "11.x.x",
"babel-loader": "6.2.x",
"babel-preset-es2015": "6.6.x",
"babel-preset-react": "6.5.x",
"babel-preset-stage-0": "6.5.x",
"jest-cli": "11.0.x"
},
"publishConfig": {
"registry": "https://npm.bengler.no"
}
}