forked from sjorssnoeren/api-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "api-documentation",
"version": "1.0.0",
"description": "API Documentation for all of Mollie's public APIs.",
"main": "index.js",
"scripts": {
"lint:js": "eslint \"./source/theme/**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mollie/api-documentation.git"
},
"keywords": [
"mollie",
"api",
"documentation"
],
"author": "Mollie B.V. <[email protected]>",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/mollie/api-documentation/issues"
},
"homepage": "https://www.mollie.com",
"devDependencies": {
"@mollie/eslint-config-node": "1.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^6.8.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"node-sass": "^4.14.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"sass": "^1.32.8"
},
"dependencies": {
"@algolia/autocomplete-js": "^1.7.2",
"algoliasearch": "^4.14.2",
"dropkickjs": "^2.2.4",
"lodash": "^4.17.21"
},
"private": true,
"lint-staged": {
"source/theme/**/*.{js,json}": [
"eslint",
"prettier --write",
"git add"
]
}
}