-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "cerealizr",
"version": "1.0.1-alpha",
"description": "A simple framework to easily transform your data to a useful format",
"main": "build/index.js",
"scripts": {
"test": "jest",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"lint-diff": "git diff --name-only --cached --relative | grep \\.js$ | xargs eslint",
"precommit": "npm run lint-diff",
"build": "babel -d build/ src/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damfinkel/object-mapper.git"
},
"author": "Damián Finkelstein <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/damfinkel/object-mapper/issues"
},
"homepage": "https://github.com/damfinkel/object-mapper#readme",
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"regenerator-runtime": "^0.13.7"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1"
}
}