-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@grimen/react-interactable",
"version": "0.1.0",
"description": "A clean and performant React Hook implementation of universal component/element dragging, dropping, and resizing.",
"keywords": [
"react",
"javascript",
"dom",
"browser",
"interactable",
"draggable",
"droppable",
"resizable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/grimen/react-interactable.git"
},
"bugs": {
"url": "https://github.com/grimen/react-interactable/issues"
},
"homepage": "https://github.com/grimen/react-interactable#readme",
"author": "Jonas Grimfelt <jonas@markable.ai> (https://github.com/grimen)",
"license": "MIT",
"main": "index.js",
"module": "index.js",
"scripts": {
"test": "npx jest",
"test-ci": "npx jest --runInBand --forceExit --detectOpenHandles --coverage",
"test-dev": "npx jest --watch",
"build": "rollup -c",
"build-dev": "rollup -c -w",
"validate": "npx eslint \"**/*.js\"",
"release": "yarn publish --access public",
"coverage": "npx jest --coverage",
"coverage-codecov": "npx codecov"
},
"dependencies": {},
"peerDependencies": {
"classnames": "2.x",
"debug": "4.x",
"react": "16.x",
"react-dom": "16.x"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-eslint": "^10.0.1",
"codecov": "^3.2.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^25.1.0",
"jest-tobetype": "^1.2.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-eslint": "^7.0.0"
},
"jest": {
"bail": true,
"verbose": true,
"testRegex": "test_.*\\.js",
"testEnvironment": "node"
}
}