-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.07 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
{
"name": "antd-tree-transfer",
"version": "0.0.3",
"description": "react tree transfer components by antd",
"main": "dist/index.js",
"scripts": {
"start": "lucio start",
"eslint": "lucio eslint",
"prebuild:gh-pages": "npm run eslint && npm run test",
"build:gh-pages": "lucio build",
"prebuild": "npm run eslint && npm run test",
"build": "lucio library -c .luciorc.lib.js",
"test": "jest",
"coverage": "jest --coverage",
"codecov": "codecov --token=28bebdf1-7240-4033-87bb-1c7143cf660e"
},
"jest": {
"setupFiles": [
"./test/setup.js"
],
"testMatch": [
"**/?(*.)(spec|test|e2e).js?(x)"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/test/styleMock.js"
},
"testURL": "http://localhost/"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jindada/tree-transfer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jindada/tree-transfer/issues"
},
"homepage": "https://github.com/jindada/tree-transfer#readme",
"dependencies": {
"classnames": "^2.2.5",
"lodash.difference": "^4.5.0",
"lodash.uniq": "^4.5.0"
},
"devDependencies": {
"babel-jest": "^22.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"jest": "^22.0.3",
"jsdom": "^11.5.1",
"lucio-cli": "^1.1.0-beta.4",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"prop-types": ">=15.6.0",
"antd": ">=3.0.0"
}
}