forked from handsontable/hyperformula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
163 lines (163 loc) · 6.87 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "hyperformula",
"description": "HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas",
"homepage": "https://hyperformula.handsontable.com/",
"repository": {
"type": "git",
"url": "https://github.com/handsontable/hyperformula.git"
},
"bugs": {
"url": "https://github.com/handsontable/hyperformula/issues"
},
"author": "Handsoncode <[email protected]>",
"version": "2.5.0",
"keywords": [
"formula",
"spreadsheet",
"calculation",
"data",
"compute",
"tabular-data",
"operation",
"conversion",
"arithmetic",
"concatenation",
"comparison",
"logical",
"formulas",
"parser",
"excel",
"office",
"workbook",
"worksheet",
"sheet",
"open formula",
"openformula"
],
"browserslist": [
"last 2 chrome versions",
"last 2 and_chr versions",
"last 2 firefox versions",
"last 2 and_ff versions",
"last 2 safari versions",
"last 2 ios_saf versions",
"last 2 edge versions",
"last 2 and_uc versions",
"last 2 and_qq versions",
"last 2 op_mob versions"
],
"license": "GPL-3.0-only",
"module": "es/index.js",
"main": "commonjs/index.js",
"jsnext:main": "es/index.js",
"jsdelivr": "dist/hyperformula.min.js",
"unpkg": "dist/hyperformula.min.js",
"typings": "./typings/index.d.ts",
"scripts": {
"docs:dev": "npm run typedoc:build-api && vuepress dev docs --silent --no-clear-screen --no-cache",
"docs:build": "npm run bundle-all && npm run typedoc:build-api && vuepress build docs",
"bundle-all": "cross-env HF_COMPILE=1 npm-run-all clean compile bundle:** verify-bundles",
"bundle:es": "(node script/if-ne-env.js HF_COMPILE=1 || npm run compile) && cross-env-shell BABEL_ENV=es env-cmd -f ht.config.js babel lib --out-dir es",
"bundle:cjs": "(node script/if-ne-env.js HF_COMPILE=1 || npm run compile) && cross-env-shell BABEL_ENV=commonjs env-cmd -f ht.config.js babel lib --out-dir commonjs",
"bundle:development": "(node script/if-ne-env.js HF_COMPILE=1 || npm run compile) && cross-env-shell BABEL_ENV=dist NODE_ENV=development env-cmd -f ht.config.js webpack ./lib/index.js",
"bundle:production": "(node script/if-ne-env.js HF_COMPILE=1 || npm run compile) && cross-env-shell BABEL_ENV=dist NODE_ENV=production env-cmd -f ht.config.js webpack ./lib/index.js",
"bundle:languages": "(node script/if-ne-env.js HF_COMPILE=1 || npm run compile) && cross-env-shell BABEL_ENV=dist NODE_ENV=languages env-cmd -f ht.config.js webpack",
"bundle:typings": "tsc --emitDeclarationOnly -d --outDir typings",
"verify-bundles": "run-p verify:**",
"verify:umd": "node script/check-file.js dist/hyperformula.js",
"verify:umd:min": "node script/check-file.js dist/hyperformula.min.js",
"verify:umd:full": "node script/check-file.js dist/hyperformula.full.js",
"verify:umd:full.min": "node script/check-file.js dist/hyperformula.full.min.js",
"verify:cjs": "node script/check-file.js commonjs",
"verify:publish-package": "npm pack | node script/check-publish-package.js",
"verify:typings": "tsc --noEmit",
"test": "npm-run-all lint test:unit test:browser",
"test:unit": "cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"test:coverage": "npm run test:unit -- --coverage",
"test:logMemory": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --runInBand --logHeapUsage",
"test:unit.ci": "cross-env NODE_ICU_DATA=node_modules/full-icu node --expose-gc ./node_modules/jest/bin/jest --forceExit",
"test:browser": "cross-env-shell BABEL_ENV=dist env-cmd -f ht.config.js karma start",
"test:browser.debug": "cross-env-shell BABEL_ENV=dist NODE_ENV=debug env-cmd -f ht.config.js karma start",
"test:performance": "npm run benchmark:basic && npm run benchmark:cruds",
"typedoc:build": "typedoc --options .typedoc.ts",
"typedoc:build-api": "typedoc --options .typedoc.md.ts",
"typedoc:serve": "npm run typedoc:build && serve doc -p 5005",
"benchmark:basic": "npm run tsnode test/performance/run-basic-benchmark.ts",
"benchmark:cruds": "npm run tsnode test/performance/run-cruds-benchmark.ts",
"benchmark:write-to-file": "npm run tsnode test/performance/write-to-file.ts",
"benchmark:compare-benchmarks": "npm run tsnode test/performance/compare-benchmarks.ts",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"clean": "rimraf coverage/ commonjs/ dist/ es/ languages/ lib/ typings/ test-jasmine/",
"compile": "tsc",
"compile:tests": "tsc --project tsconfig.test.json",
"jasmine:start": "cross-env NODE_ICU_DATA=node_modules/full-icu jasmine --config=jasmine.json",
"check:licenses": "license-checker --production --excludePackages=\"[email protected]\" --onlyAllow=\"MIT; Apache-2.0; BSD-3-Clause; BSD-2-Clause; ISC; BSD; Unlicense\"",
"tsnode": "ts-node --transpile-only -O {\\\"module\\\":\\\"commonjs\\\"}"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.18.9",
"@microsoft/tsdoc": "^0.12.16",
"@types/jasmine": "^4.0.0",
"@types/jest": "^26.0.0",
"@types/jsdom": "^16.2.1",
"@types/node": "^10.17.19",
"@types/unorm": "^1.3.28",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vuepress/plugin-active-header-links": "^1.3.1",
"as-table": "^1.0.55",
"babel-loader": "^8.0.6",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"core-js": "^3.23.0",
"cross-env": "^7.0.0",
"env-cmd": "^10.1.0",
"eslint": "^7.0.0",
"eslint-plugin-jsdoc": "^43.1.1",
"eslint-plugin-license-header": "^0.6.0",
"full-icu": "^1.3.1",
"jasmine": "^4.0.0",
"jest": "^26.0.0",
"jsdom": "^16.2.2",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"license-checker": "^25.0.1",
"markdown-it-footnote": "^3.0.3",
"markdown-it-regex": "^0.2.0",
"moment": "^2.22.2",
"npm-run-all": "^4.1.5",
"on-build-webpack": "^0.1.0",
"rimraf": "^3.0.2",
"serve": "^14.2.0",
"string-replace-loader": "^2.3.0",
"tar": "^6.0.1",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.2",
"ts-node": "^8.0.1",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^4.0.8",
"vuepress": "^1.9.9",
"vuepress-plugin-clean-urls": "^1.1.1",
"weak-napi": "^2.0.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpackbar": "^4.0.0"
},
"dependencies": {
"chevrotain": "^6.5.0",
"tiny-emitter": "^2.1.0",
"unorm": "^1.6.0"
}
}