forked from kpi-intelligence/handsontable-key-value
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "handsontable-key-value",
"version": "3.0.2",
"description": "Handstontable plugin to handle key-value pair data type.",
"repository": {
"type": "git",
"url": "https://github.com/kpi-intelligence/handsontable-key-value.git"
},
"main": "commonjs/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf commonjs",
"lint": "eslint src/",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && npm run build:commonjs && npm run build:es",
"build:commonjs": "BABEL_ENV=commonjs_dist babel src --out-dir commonjs",
"build:es": "BABEL_ENV=es babel src --out-dir es",
"prepare": "npm run build"
},
"author": "KPI Intelligence",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-require-ignore": "^0.1.1",
"core-js": "^3.1.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"handsontable": "^7.0.0"
},
"dependencies": {
"lodash.deburr": "^4.1.0"
}
}