-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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
59
60
{
"name": "alter-case",
"version": "0.1.0",
"description": "Transform String Cases in JavaScript",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/*",
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepublish": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarscode/alter-case.git"
},
"keywords": [
"change-case",
"alter",
"case",
"string",
"camel-case",
"pascal-case",
"kebab-case",
"snake-case",
"string-case"
],
"author": "Salifu Sani Rich <hallosars@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sarscode/alter-case/issues"
},
"homepage": "https://github.com/sarscode/alter-case#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.3.0",
"jest": "^26.2.2",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-terser": "^7.0.0"
}
}