-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 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
{
"name": "react-sider",
"version": "0.4.1",
"description": "Flexible Sider component integrated with Ant Design Menu.",
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production babel src --out-dir lib && npm run build:css",
"build:css": "cross-env sass src/Sider.scss lib/index.css --no-source-map",
"test": "jest --coverage",
"lint": "cross-env eslint --ext .js --ext .jsx src",
"clean": "rm -rf lib",
"pre:release": "npm run clean && npm run test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlanWei/react-sider.git"
},
"author": "Alan Wei <alanweichangran@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlanWei/react-sider/issues"
},
"homepage": "https://github.com/AlanWei/react-sider#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"jest": "^23.6.0",
"react-test-renderer": "^16.6.3",
"sass": "^1.15.0"
},
"dependencies": {
"antd": "^3.10.7",
"lodash": "^4.17.11",
"memoize-one": "^4.0.3",
"path-to-regexp": "^2.4.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-router-dom": "^4.3.1"
}
}