-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.27 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "reference-fetcher",
"version": "0.0.0-semantically-released",
"description": "Simple and easy entity references fetcher",
"main": "dist/index.js",
"dependencies": {
"babel-polyfill": "6.23.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babelify": "^7.3.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jasmine": "^2.7.1",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-node": "^5.1.0",
"istanbul": "^0.4.5",
"jest": "^20.0.4",
"jest-babel-istanbul": "^0.1.0",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6",
"semantic-release-cli": "^3.0.3"
},
"scripts": {
"lint": "eslint ./src",
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 90 --branches 85 --functions 85 --lines 90",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "jest",
"test:watch": "jest --watch",
"build": "babel --out-dir dist --ignore *.test.js,./src/test/* src",
"prebuild": "rimraf dist",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"semantic-release:pre": "semantic-release pre"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/wing-eu/reference-fetcher.git"
},
"keywords": [
"Entity",
"Reference",
"Fetcher",
"Database",
"API",
"Store"
],
"author": "Luc Merceron <luc.merceron.dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wing-eu/reference-fetcher/issues"
},
"homepage": "https://github.com/wing-eu/reference-fetcher#readme",
"babel": {
"presets": [
"es2015",
"stage-3"
]
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}