-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "string-cases",
"version": "0.0.1",
"description": "Convert variable name to various cases",
"license": "MIT",
"private": true,
"repository": "VovanR/string-cases",
"author": "Vladimir Rodkin <mail@vovanr.com> (https://github.com/VovanR)",
"scripts": {
"start": "parcel index.html --no-autoinstall",
"build": "parcel build index.html --public-url ./",
"test": "xo",
"deploy": "npm run build && cp logo.svg ./dist/ && gh-pages -d dist"
},
"keywords": [],
"dependencies": {
"preact": "10.4.8",
"to-case": "2.0.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/plugin-transform-react-jsx": "7.10.4",
"eslint-config-xo-preact": "^1.0.0",
"eslint-plugin-react": "^7.20.6",
"gh-pages": "3.1.0",
"parcel-bundler": "1.12.4",
"xo": "0.33.1"
},
"bugs": {
"url": "https://github.com/VovanR/string-cases/issues"
},
"homepage": "https://github.com/VovanR/string-cases#readme",
"xo": {
"space": true,
"envs": [
"browser"
],
"extends": "xo-preact",
"rules": {
"comma-dangle": "off",
"import/extensions": 0,
"react/jsx-closing-bracket-location": "off",
"react/require-optimization": "off"
}
}
}