forked from chrisdmacrae/atomic-algolia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "atomic-algolia",
"version": "0.3.17",
"description": "An NPM package for running atomic updates to an Algolia index",
"main": "lib/index.js",
"bin": "lib/index.js",
"scripts": {
"prepublish": "npm run babel",
"prepush": "npm run babel",
"babel": "npx babel src -d lib",
"babel:watch": "npx babel -- --watch",
"clean": "npx rimraf lib",
"test": "echo \"Error: no test specified\" && exit 1",
"contributors:add": "npx all-contributors add",
"contributors:generate": "npx all-contributors generate",
"contributors:check": "npx all-contributors check"
},
"keywords": [
"algolia",
"node"
],
"engines": {
"node": ">=7.6.0"
},
"repository": "github:chrisdmacrae/atomic-algolia",
"author": {
"name": "Chris D. Macrae",
"email": "[email protected]",
"url": "https://chrisdmacrae.com"
},
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/runtime": "^7.2.0",
"algoliasearch": "^3.24.9",
"chalk": "^2.3.0",
"debug": "^4.1.0",
"dotenv": "^5.0.0",
"md5": "^2.2.1"
},
"devDependencies": {
"all-contributors-cli": "^4.11.0",
"eslint": "^4.19.0",
"eslint-config-prettier": "^2.9.0",
"husky": "^0.14.3",
"prettier": "^1.11.1",
"source-map-support": "^0.5.4",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"yarn": "^1.5.1"
}
}