-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.16 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
{
"name": "kibiutils",
"version": "10.19.0",
"description": "Small utility lib for the Kibi project",
"main": "./lib/kibiutils.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register,js:babel-polyfill src/__tests__/*.js src/**/__tests__/*.js",
"lint": "eslint src/*.js",
"lintfix": "eslint --fix src/*.js",
"validate": "npm ls",
"babel": "babel --presets es2015,es2017 -d lib/ src/",
"prepublish": "npm run babel"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/sirensolutions/kibiutils.git"
},
"keywords": [
"kibi",
"utils"
],
"author": "Szymon Danielczyk <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sirensolutions/kibiutils/issues"
},
"babel": {
"plugins": [
"add-module-exports",
"transform-async-generator-functions",
"transform-class-properties",
"transform-object-rest-spread"
],
"presets": [
"es2015",
"es2017"
]
},
"homepage": "https://github.com/sirensolutions/kibiutils",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "6.21.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.0",
"babel-loader": "6.2.10",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-async-generator-functions": "6.24.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-polyfill": "6.20.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-register": "6.18.0",
"bluebird": "2.9.34",
"elasticsearch": "^15.1.1",
"eslint": "7.12.1",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.0",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-prefer-object-spread": "1.2.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-siren": "sirensolutions/eslint-plugin-siren#2.0.0",
"expect.js": "~0.3.1",
"lodash": "^4.17.19",
"mocha": "^5.2.0",
"precommit-hook": "3.0.0",
"sinon": "^5.0.7"
},
"dependencies": {}
}