forked from algolia/places
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
{
"name": "places.js",
"version": "1.4.15",
"description": "🌐 Turn any <input> into an address autocomplete.",
"main": "index.js",
"jsdelivr": "dist/cdn/places.min.js",
"scripts": {
"build": "NODE_ENV=production ./scripts/build.sh",
"dev": "./scripts/dev.sh",
"docs:js:build": "webpack --config webpack.config.docs.babel.js",
"docs:js:watch": "webpack --config webpack.config.docs.babel.js --watch",
"docs:build": "./scripts/build-website.sh",
"docs:deploy": "./scripts/deploy-website.sh",
"doctoc": "doctoc --maxlevel 3 CONTRIBUTING.md",
"js:build": "webpack",
"js:watch": "webpack --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "./scripts/release.sh",
"test": "jest --bail --no-cache && npm run lint",
"test:watch": "jest --watch",
"test:ci": "./scripts/test-ci.sh"
},
"author": "Algolia (https://www.algolia.com)",
"homepage": "https://community.algolia.com/places",
"bugs": "https://github.com/algolia/places/issues",
"repository": "https://github.com/algolia/places",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clipboard": "^1.7.1",
"conventional-changelog-cli": "^1.3.1",
"docsearch.js": "^2.3.3",
"doctoc": "^1.3.0",
"eslint": "^4.1.1",
"eslint-config-algolia": "^11.0.0",
"eslint-config-prettier": "^2.2.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jasmine": "^2.6.2",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"jest-cli": "^20.0.4",
"json": "^9.0.6",
"mversion": "^1.10.1",
"prettier": "^1.4.4",
"pretty-bytes-cli": "^2.0.0",
"raw-loader": "^0.5.1",
"replace-in-file": "^2.5.2",
"semver": "^5.1.1",
"uglify-js": "^2.8.16",
"webpack": "^2.6.1"
},
"dependencies": {
"algoliasearch": "^3.24.0",
"autocomplete.js": "^0.28.2",
"events": "^1.1.1",
"insert-css": "^2.0.0"
},
"jest": {
"testRegex": "\\.test\\.js$",
"coverageDirectory": ".coverage/",
"moduleNameMapper": {
"^.+\\.(svg)$": "<rootDir>/test/fileMock.js"
}
}
}