-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 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
{
"name": "apicco",
"version": "1.0.0",
"description": "",
"scripts": {
"postinstall": "bash ./scripts/install.sh",
"test": "bash ./scripts/test.sh",
"lint": "./node_modules/eslint/bin/eslint.js .",
"lint:fix": "prettier-eslint --write '**/*?(.test).js'",
"precommit": "lint-staged",
"prepush": "npm test"
},
"lint-staged": {
"*?(.test).js": [
"prettier-eslint --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sokratisvidros/apicco.git"
},
"author": "Sokratis Vidros <sokratis.vidros@gmail.com>",
"contributors": [
{
"name": "Sokratis Vidros",
"email": "sokratis.vidros@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sokratisvidros/apicco/issues"
},
"homepage": "https://github.com/sokratisvidros/apicco#readme",
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-security": "^1.4.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1"
},
"dependencies": {}
}