forked from strdr4605/mockingcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "@strdr4605/mockingcase",
"version": "1.10.4",
"description": "Convert a string to mOcKiNgCaSe",
"homepage": "https://github.com/strdr4605/mockingcase.git",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/strdr4605/mockingcase/issues",
"email": "str.dr4605@gmail.com"
},
"main": "src/mockingcase.js",
"types": "src/mockingcase.d.ts",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "jest --coverage",
"format": "prettier --config .prettierrc --write \"src/*.[jt]s\"",
"lint": "eslint src/mockingcase.js src/mockingcase.test.js",
"pre-commit": "npm run format && npm run lint && npm test"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"files": [
"src/mockingcase.d.ts",
"src/mockingcase.js"
],
"keywords": [
"case",
"text",
"string",
"convert"
],
"author": "Dragoș Străinu",
"license": "ISC",
"devDependencies": {
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"husky": "^2.4.1",
"jest": "^23.6.0",
"prettier": "1.18.2"
}
}