-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "algolia-sitemap",
"version": "2.2.2",
"main": "build/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/algolia/algolia-sitemap.git"
},
"files": [
"build/*"
],
"scripts": {
"precommit": "lint-staged",
"prepare": "npm run build",
"build": "babel *.js -d build",
"test": "jest && eslint .",
"format": "prettier --write {*,**/*,examples/**/*}.{js,md}"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"algoliasearch": "^3.26.0",
"jsx-string": "^2.0.0",
"validator": "^13.12.0"
},
"jest": {
"snapshotSerializers": [
"jest-serializer-html"
]
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.3",
"babel-jest": "23.0.1",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.7.0",
"eslint": "4.19.1",
"eslint-config-algolia": "13.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jest": "21.15.1",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.8.2",
"husky": "0.14.3",
"jest": "23.0.1",
"jest-serializer-html": "5.0.0",
"lint-staged": "7.1.2",
"prettier": "1.12.1"
}
}