forked from qynAUGMN/react-drag-guideline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.22 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
{
"name": "react-dragline",
"version": "1.0.0",
"description": "Guide lines and magnetic adsorption to better align draggable elements in React",
"author": "Huang NuNu",
"main": "lib/index.js",
"license": "MIT",
"homepage": "https://github.com/zcued/react-dragline",
"repository": {
"type": "git",
"url": "https://github.com/zcued/react-dragline.git"
},
"bugs": {
"url": "https://github.com/zcued/react-dragline/issues"
},
"keywords": [
"react",
"dragline",
"draggable",
"react-dragline",
"react-draggable",
"react-component",
"magnetic adsorption"
],
"scripts": {
"start": "NODE_ENV=dev webpack-dev-server --progress --color --config build --hot",
"build": "npm run build:umd && npm run build:cjs",
"build:umd": "npm run clean:umd && NODE_ENV=umd webpack --progress --config build && NODE_ENV=umd webpack --progress --config build --minify",
"build:cjs": "npm run clean:cjs && babel src --out-dir lib",
"build:docs": "NODE_ENV=docs webpack --progress --config build",
"clean:umd": "rimraf dist",
"clean:cjs": "rimraf lib",
"lint": "eslint ./src",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@react-mock/state": "^0.1.7",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.4",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"eslint": "^4.19.1",
"eslint-config-zcool": "^1.4.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.7.0",
"immutability-helper": "^2.8.1",
"jest": "^24.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"webpack": "^4.12.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"classnames": "^2.2.6",
"prop-types": "15.7.1",
"react-draggable": "^2.2.6"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
}
}