This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 230
/
package.json
93 lines (93 loc) · 3.41 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
87
88
89
90
91
92
93
{
"name": "places.js",
"version": "1.19.0",
"description": "🌐 Turn any <input> into an address autocomplete.",
"main": "index.js",
"types": "typings.d.ts",
"jsdelivr": "dist/cdn/places.min.js",
"scripts": {
"build": "NODE_ENV=production ./scripts/build.sh",
"dev": "./scripts/dev.sh",
"docs:js:build": "webpack --mode production --config webpack.config.docs.js",
"docs:js:watch": "webpack --mode production --config webpack.config.docs.js --watch",
"docs:build": "./scripts/build-website.sh",
"docs:deploy": "./scripts/deploy-website.sh",
"doctoc": "doctoc --maxlevel 3 CONTRIBUTING.md",
"js:build": "webpack --mode development",
"js:watch": "webpack --mode development --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "./scripts/release.sh",
"test:unit": "jest --bail --no-cache --testPathIgnorePatterns=e2e",
"test:watch": "jest --watch",
"test:ci": "./scripts/test-ci.sh",
"test:e2e": "jest e2e.test.js",
"test": "npm run --scripts-prepend-node-path=auto test:unit && npm run --scripts-prepend-node-path=auto lint && npm run --scripts-prepend-node-path=auto build && npm run --scripts-prepend-node-path=auto test:e2e"
},
"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": "7.16.0",
"@babel/core": "7.16.0",
"@babel/node": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-decorators": "7.16.0",
"@babel/plugin-proposal-export-namespace-from": "7.16.0",
"@babel/plugin-proposal-function-sent": "7.16.0",
"@babel/plugin-proposal-json-strings": "7.16.0",
"@babel/plugin-proposal-numeric-separator": "7.16.0",
"@babel/plugin-proposal-throw-expressions": "7.16.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.16.0",
"algolia-aerial": "1.5.3",
"algoliasearch-helper": "2.28.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.3",
"babel-plugin-inline-import": "3.0.0",
"clipboard": "2.0.11",
"conventional-changelog-cli": "2.1.1",
"docsearch.js": "2.6.3",
"doctoc": "1.4.0",
"eslint": "7.32.0",
"eslint-config-algolia": "16.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.26.1",
"jest-cli": "26.6.3",
"json": "10.0.0",
"prettier": "2.4.1",
"pretty-bytes-cli": "2.0.0",
"puppeteer": "5.5.0",
"raw-loader": "4.0.2",
"replace-in-file": "6.3.5",
"semver": "7.3.7",
"uglify-js": "3.14.3",
"webpack": "4.46.0",
"webpack-cli": "3.3.12"
},
"dependencies": {
"algoliasearch": "^3.35.1",
"autocomplete.js": "^0.38.0",
"events": "^3.0.0",
"insert-css": "^2.0.0",
"pending-xhr-puppeteer": "1.0.17"
},
"jest": {
"testRegex": "\\.test\\.js$",
"coverageDirectory": ".coverage/",
"moduleNameMapper": {
"^.+\\.(svg)$": "<rootDir>/test/fileMock.js"
}
}
}