-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.37 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
58
{
"name": "@alesmenzel/vargs",
"version": "1.2.0",
"description": "Variable number of arguments",
"main": "./src/index.js",
"scripts": {
"test:suite": "mocha ./src/**/*.spec.js",
"test:lint": "eslint .",
"test": "run-s test:lint test:suite",
"format": "prettier --write src/**/*.js",
"prepublishOnly": "npm run test",
"publish:latest": "npm publish --access public --tag latest",
"publish:next": "npm publish --access public --tag next"
},
"keywords": [
"function",
"variable",
"vargs",
"utility"
],
"author": "Aleš Menzel <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.2"
},
"dependencies": {
"@alesmenzel/function-arguments": "^1.1.0"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"files": [
"src",
"LICENSE",
"README.md"
]
}