forked from react-dnd/react-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.27 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.27 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-dnd-master",
"private": true,
"description": "React-DnD Monorepo",
"repository": {
"type": "git",
"url": "https://github.com/react-dnd/react-dnd.git"
},
"keywords": [
"react",
"reactjs",
"file",
"drag",
"drop",
"html5",
"draggable",
"droppable",
"drag-and-drop",
"dnd",
"javascript",
"react-component",
"hoc"
],
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"contributors": [
"Chris Trevino <darthtrevino@gmail.com> (http://github.com/darthtrevino)",
"Jordan Gensler (http://github.com/kesne)",
"Gagan (https://github.com/thetechie)"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/react-dnd/react-dnd/issues"
},
"homepage": "https://github.com/react-dnd/react-dnd",
"scripts": {
"unit_test": "jest",
"jest:watch": "jest --watch",
"jest:cov": "jest --coverage",
"lint": "eslint .",
"test_modules": "lerna run test --stream",
"publish_docs": "./scripts/publishDocumentation.sh",
"test": "run-s lint jest:cov test_modules",
"prettify":
"prettier 'packages/*/**/*.js' 'examples/**/*.js' 'site/**/*.js'",
"precommit": "lint-staged",
"start": "lerna run --stream start"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lerna": "^2.9.0",
"lint-staged": "^4.2.3",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1"
},
"jest": {
"moduleNameMapper": {
"^react-dnd$": "<rootDir>/packages/react-dnd/src",
"react-dnd-html5-backend":
"<rootDir>//packages/react-dnd-html5-backend/src",
"react-dnd-test-backend":
"<rootDir>//packages/react-dnd-test-backend/src",
"dnd-core": "<rootDir>//packages/dnd-core/src"
}
},
"lint-staged": {
"*.js": ["eslint --fix", "prettier --write", "git add"]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"useTabs": true
},
"workspaces": {
"packages": ["packages/*"]
}
}