forked from handsontable/handsontable-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 6.22 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "handsontable-pro",
"description": "Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs",
"homepage": "http://handsontable.com/",
"repository": {
"type": "git",
"url": "https://github.com/handsontable/handsontable-pro.git"
},
"bugs": {
"url": "https://github.com/handsontable/handsontable-pro/issues"
},
"author": "Handsoncode <[email protected]>",
"version": "6.2.2",
"browser": "dist/handsontable.js",
"main": "commonjs/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"clean": "rimraf commonjs es coverage",
"lint": "eslint src/ test/",
"test": "npm run lint && npm run test:unit && npm run test:production && npm run test:handsontable && npm run test:e2e",
"test:handsontable": "npm run build:umd && npm run test:handsontable.dump && npm run test:e2e.puppeteer",
"test:production": "npm run build:umd.min && npm run build:languages.min && npm run test:production.dump && npm run test:e2e.puppeteer",
"test:e2e": "npm run build:umd && npm run build:languages && npm run test:e2e.dump && npm run test:e2e.puppeteer",
"test:e2e.watch": "node ./.config/bin/trigger-on-stdout-change.js \"concurrently --raw --kill-others 'npm run build:umd -- --watch' 'npm run test:e2e.dump -- --watch'\" \"npm run test:e2e.puppeteer\"",
"test:e2e.puppeteer": "node test/scripts/run-puppeteer.js test/E2ERunner.html",
"test:unit": "cross-env BABEL_ENV=commonjs env-cmd ./hot.config.js jest --testPathPattern=$npm_config_testPathPattern",
"test:unit.watch": "cross-env BABEL_ENV=commonjs env-cmd ./hot.config.js jest --testPathPattern=$npm_config_testPathPattern --watch",
"test:handsontable.dump": "cross-env BABEL_ENV=commonjs_e2e NODE_ENV=test-handsontable env-cmd ./hot.config.js webpack --hide-modules helpers=./node_modules/handsontable/test/helpers/index.js specs=./node_modules/handsontable/test/e2e/index.js",
"test:production.dump": "cross-env BABEL_ENV=commonjs_e2e NODE_ENV=test-production env-cmd ./hot.config.js webpack --hide-modules helpers=./test/helpers/index.js e2e=./test/e2e/index.js",
"test:e2e.dump": "cross-env BABEL_ENV=commonjs_e2e NODE_ENV=test-e2e env-cmd ./hot.config.js webpack --hide-modules helpers=./test/helpers/index.js e2e=./test/e2e/index.js",
"test:unit.dump": "cross-env BABEL_ENV=commonjs NODE_ENV=test-unit env-cmd ./hot.config.js webpack --hide-modules helpers=./test/helpers/index.js unit=./test/unit/index.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd.min && npm run build:languages && npm run build:languages.min",
"build:commonjs": "cross-env BABEL_ENV=commonjs_dist env-cmd ./hot.config.js babel src --out-dir commonjs",
"build:es": "cross-env BABEL_ENV=es env-cmd ./hot.config.js babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development env-cmd ./hot.config.js webpack --hide-modules ./src/index.js",
"build:umd.min": "cross-env BABEL_ENV=commonjs NODE_ENV=production env-cmd ./hot.config.js webpack --hide-modules ./src/index.js",
"build:languages": "cross-env BABEL_ENV=commonjs NODE_ENV=languages-development env-cmd ./hot.config.js webpack",
"build:languages.min": "cross-env BABEL_ENV=commonjs NODE_ENV=languages-production env-cmd ./hot.config.js webpack",
"watch": "cross-env BABEL_ENV=commonjs NODE_ENV=watch env-cmd ./hot.config.js webpack --watch --hide-modules ./src/index.js",
"prepublish": "npm run clean && npm run build:commonjs && npm run build:es"
},
"keywords": [
"data",
"grid",
"table",
"editor",
"grid-editor",
"data-grid",
"data-table",
"spreadsheet",
"excel",
"tabular-data",
"edit-cell",
"editable-table",
"data-spreadsheet"
],
"dependencies": {
"handsontable": "github:jeremy-smith-maco/handsontable",
"hot-formula-parser": "^3.0.1",
"moment": "2.29.4",
"numbro": "^2.0.6",
"pikaday": "1.5.1"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-forbidden-imports": "^0.1.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-require-ignore": "^0.1.1",
"check-es3-syntax-cli": "^0.2.0",
"concurrently": "^3.5.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.0.2",
"css-loader": "^0.28.1",
"ecstatic": "^3.2.0",
"env-cmd": "^5.1.0",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^3.0.0",
"fs-extra": "^4.0.1",
"glob": "^7.1.1",
"html-webpack-plugin": "^2.30.1",
"jasmine-co": "^1.2.2",
"jasmine-core": "2.5.2",
"jasmine-terminal-reporter": "^1.0.3",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"loader-utils": "^1.1.0",
"on-build-webpack": "^0.1.0",
"optimize-css-assets-webpack-plugin": "^3.1.1",
"progress-bar-webpack-plugin": "^1.9.3",
"puppeteer": "^1.10.0",
"rimraf": "^2.5.4",
"spawn-command": "0.0.2",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^0.18.2",
"supports-color": "^4.1.0",
"tree-kill": "^1.2.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.5.6"
},
"license": "SEE LICENSE IN LICENSE",
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"jest": {
"roots": [
"./test/unit",
"./src/plugins"
],
"testRegex": "(\\.spec\\.js)|(\\.unit\\.js)$",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/unit/index.js"
],
"transformIgnorePatterns": [
"/node_modules/(?!handsontable)\\w+"
],
"moduleNameMapper": {
"^handsontable-pro(.*)$": "<rootDir>/src$1",
"^handsontable(.*)$": "<rootDir>/node_modules/handsontable/src$1",
"^walkontable(.*)$": "<rootDir>/node_modules/handsontable/src/3rdparty/walkontable/src$1",
"\\.css$": "<rootDir>/test/__mocks__/styleMock.js"
}
}
}