-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 980 Bytes
/
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
{
"name": "json-style-converter",
"version": "1.0.3",
"description": "A tiny utility module for converting json objects between various coding styles",
"main": "index.js",
"files": [
"es5/index.js",
"index.js"
],
"scripts": {
"test": "node tests.js",
"linter": "eslint index.js test.js",
"build": "babel index.js --out-dir es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexnm/json-style-converter.git"
},
"keywords": [
"json",
"camelcase",
"snakecase",
"convert"
],
"author": {
"name": "Alex Moldovan",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alexnm/json-style-converter/issues"
},
"homepage": "https://github.com/alexnm/json-style-converter#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.19.0",
"eslint-config-fortech": "^1.0.0"
}
}