forked from sjorssnoeren/api-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.26 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
{
"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": "0.0.1-alpha.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^4.19.1",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"node-sass": "^4.10.0",
"parcel-bundler": "^1.10.3",
"prettier": "^1.15.2"
},
"dependencies": {
"dropkickjs": "^2.2.4",
"lodash": "^4.17.11"
},
"private": true,
"lint-staged": {
"source/theme/**/*.{js,json}": [
"eslint",
"prettier --write",
"git add"
]
}
}