-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "antd-geosuggest",
"version": "0.3.3",
"description": "Antd based geo suggestion for Google maps places API",
"homepage": "",
"author": {
"name": "chilijung",
"email": "[email protected]",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"CannerIO",
"antd",
"geosuggest"
],
"devDependencies": {
"antd": "^3.10.2",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.11.6",
"cross-env": "^5.1.3",
"css-loader": "^0.28.11",
"enzyme": "^2.4.1",
"eslint": "^4.18.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-react": "^6.2.0",
"flow-bin": "^0.66.0",
"flow-copy-source": "^1.3.0",
"git-directory-deploy": "^1.5.1",
"jest": "^22.4.2",
"less": "2.3.1",
"less-loader": "^4.1.0",
"mocha": "^3.2.0",
"ncp": "^2.0.0",
"precommit-hook-eslint": "^3.0.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^16.2.0",
"react-inspector": "^2.3.0",
"rimraf": "^2.5.4",
"style-loader": "^0.20.3",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"scripts": {
"build:flow": "flow-copy-source -v -i '**/test/**' src lib",
"lint": "eslint src test docs",
"clean": "rimraf lib dist",
"build:es5": "./node_modules/.bin/babel src --out-dir lib",
"build": "npm run build:es5 && npm run build:flow",
"prepublish": "npm run clean && npm run check:src && npm run build",
"check:src": "npm run lint && npm run test",
"test": "jest",
"test:watch": "jest --watch",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.dev.js --mode development",
"gh-pages:clean": "rimraf _gh-pages && ncp ./docs ./_gh-pages",
"gh-pages:build": "cross-env BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.ghPage.js",
"gh-pages:publish": "git-directory-deploy --directory _gh-pages",
"gh-pages": "npm run gh-pages:clean && npm run gh-pages:build && npm run gh-pages:publish",
"validate": "npm ls"
},
"pre-commit": [
"lint"
],
"repository": "chilijung/antd-geosuggest",
"peerDependencies": {
"antd": "^3.4.1",
"react": "^0.14.0 || ^15.0.0 || 16.x",
"react-dom": "^0.14.0 || ^15.0.0 || 16.x"
},
"license": "MIT",
"dependencies": {
"lodash.debounce": "^4.0.8"
}
}