-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 KB
/
package.json
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
{
"name": "react-drag-list",
"version": "1.1.0",
"description": "drag list ui component for react",
"keywords": [
"react",
"react-component",
"react-drag-list"
],
"engines": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/alcat2008/react-drag-list",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/alcat2008/react-drag-list.git"
},
"bugs": "https://github.com/alcat2008/react-drag-list/issues",
"files": [
"lib",
"assets/*.css",
"assets/*.less"
],
"license": "MIT",
"main": "./lib/index",
"types": "./lib/index.d.ts",
"config": {
"port": 8000
},
"scripts": {
"watch-tsc": "rc-tools run watch-tsc",
"build": "rc-tools run build",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"karma": "rc-tools run karma",
"saucelabs": "rc-tools run saucelabs",
"test": "rc-tools run test",
"chrome-test": "rc-tools run chrome-test",
"coverage": "rc-tools run coverage"
},
"dependencies": {
"babel-runtime": "6.x",
"classnames": "^2.2.5",
"sortablejs": "^1.5.1"
},
"devDependencies": {
"expect.js": "0.3.x",
"pre-commit": "1.x",
"rc-tools": "5.x",
"react": "15.x",
"react-addons-test-utils": "15.x",
"react-dom": "15.x"
},
"pre-commit": [
"lint"
]
}