-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 980 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 980 Bytes
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
{
"name": "react-sortable-columns",
"version": "1.3.3",
"main": "index.js",
"module": "./index.js",
"description": "Separate your data list array into columns where items can be moved and auto sorted back in array.",
"repository": {
"type": "git",
"url": "https://github.com/experium/react-sortable-columns.git"
},
"peerDependencies": {
"lodash": "^4.0.0",
"prop-types": ">=15.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"react-motion": ">=0.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-motion": "^0.5.2",
"react-scripts": "1.0.10"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"test:ci": "CI=true npm test a -- --runInBand",
"build:ci": "NODE_ENV=production babel src --ignore index.js,example,__test__ --out-dir ./lib"
}
}