-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "mappr",
"version": "6.1.0",
"description": "JavaScript object to object mapper",
"keywords": [
"functional",
"mapper",
"object"
],
"author": "Dieter Luypaert <[email protected]>",
"license": "MIT",
"repository": "[email protected]:Moeriki/node-mappr.git",
"main": "index.js",
"scripts": {
"lint": "eslint --cache *.js lib/ test/",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "BABEL_ENV=production babel lib/ --out-dir dist/",
"preversion": "npm run build && npm run test && git add -A dist/",
"precommit": "lint-staged",
"prepush": "npm test"
},
"jest": {
"collectCoverageFrom": [
"lib/[^.]**.js"
]
},
"lint-staged": {
"{lib,test}/*.js": "eslint"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.isplainobject": "^4.0.6",
"lodash.mapvalues": "^4.6.0",
"lodash.omitby": "^4.6.0",
"lodash.set": "^4.3.2",
"lodash.topairs": "^4.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^4.7.2",
"eslint-config-muriki": "^9.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jasmine": "^2.8.4",
"eslint-plugin-node": "^5.1.1",
"husky": "^0.14.3",
"jest": "^21.1.0",
"lint-staged": "^4.2.3",
"lodash": "^4.17.4"
}
}