-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 862 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
41
42
{
"version": "1.3.0",
"name": "@basket/get",
"main": "index.js",
"description": "Smart getter for js objects",
"repository": {
"type": "git",
"url": "git@github.com:borovin/get.git"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:codestyle": "eslint ."
},
"author": "a@borovin.com",
"license": "MIT",
"devDependencies": {
"babel-jest": "^17.0.0",
"babel-preset-es2015": "^6.16.0",
"eslint": "^3.8.1",
"jest": "^17.0.0"
},
"dependencies": {
"lodash": "^4.16.6"
},
"jest": {
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/__tests__/**",
"!coverage/**"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}