forked from algolia/places
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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
{
"name": "places.js",
"version": "1.3.4",
"description": "🌐 Turn any <input> into an address autocomplete.",
"main": "index.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:deploy": "./scripts/deploy-website.sh",
"doctoc": "doctoc --maxlevel 3 CONTRIBUTING.md",
"js:build": "webpack",
"js:watch": "webpack --watch",
"lint": "eslint .",
"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.10.1",
"babel-core": "^6.10.4",
"babel-jest": "^13.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-webpack-loaders": "^0.7.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"clipboard": "^1.5.12",
"conventional-changelog-cli": "^1.2.0",
"css-loader": "^0.23.1",
"docsearch.js": "^1.3.0",
"doctoc": "^1.2.0",
"eslint-config-algolia": "^5.1.0",
"jest-cli": "^13.1.1",
"json": "^9.0.4",
"mversion": "^1.10.1",
"node-sass": "^3.8.0",
"pretty-bytes-cli": "^1.0.0",
"raw-loader": "^0.5.1",
"sass-loader": "^4.0.0",
"semver": "^5.1.1",
"to-string-loader": "^1.1.4",
"uglify-js": "^2.7.0",
"webpack": "^1.13.1"
},
"dependencies": {
"algoliasearch": "^3.17.0",
"autocomplete.js": "^0.20.1",
"events": "^1.1.1",
"insert-css": "^1.0.0"
},
"jest": {
"testRegex": "\\.test\\.js$",
"coverageDirectory": ".coverage/"
}
}