-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.36 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
{
"name": "react-easy-sortable",
"version": "0.1.1",
"description": "Sortable List Component with React",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"build": "rollup -c",
"prepare": "rollup -c",
"coverage": "jest --coverage",
"precommit": "lint-staged",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"repository": "git@github.com:teabyii/react-sortable-list.git",
"keywords": [
"react",
"reactjs",
"react-component",
"component",
"sortable",
"sortable-list",
"list",
"sortable list"
],
"author": "teabyii <teabyii@gmail.com>",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^3.3.12",
"@storybook/react": "^3.3.12",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.0.2",
"standard": "^10.0.3"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"lint-staged": {
"*.js": [
"lint:fix",
"git add"
]
}
}