-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage.json
140 lines (140 loc) · 5.51 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
{
"name": "hyperformula",
"description": "HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas",
"homepage": "https://handsontable.com/",
"repository": {
"type": "git",
"url": "https://github.com/handsontable/hyperformula.git"
},
"bugs": {
"url": "https://github.com/handsontable/hyperformula/issues"
},
"author": "Handsoncode <hello@handsontable.com>",
"version": "0.0.1",
"keywords": [
"formula",
"spreadsheet",
"calculation",
"data",
"compute",
"tabular-data",
"operation",
"conversion",
"arithmetic",
"concatenation",
"comparison",
"logical",
"formulas",
"parser",
"excel",
"office",
"workbook",
"worksheet",
"sheet",
"open formula",
"openformula"
],
"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",
"private": true,
"scripts": {
"docs": "npm run bundle-all && npm run docs:api && npm run docs:build",
"docs:api": "typedoc --options .typedoc.md.ts",
"docs:dev": "vuepress dev docs --silent --no-clear-screen --no-cache",
"docs:build": "vuepress build docs",
"bundle-all": "cross-env HF_COMPILE=1 npm-run-all compile bundle:** typings:generate 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=commonjs 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=commonjs NODE_ENV=production env-cmd -f ht.config.js webpack ./lib/index.js",
"bundle:typings": "tsc --emitDeclarationOnly -d --outDir typings",
"clean": "rimraf coverage/ commonjs/ dist/ es/ lib/ typings/ test-jasmine/",
"compile": "tsc",
"compile:tests": "tsc --project tsconfig.test.json",
"coverage": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --coverage",
"test": "npm-run-all lint test:unit test:browser",
"test:unit": "cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"test:browser": "karma start",
"test:browser.debug": "cross-env NODE_ENV=debug karma start",
"jasmine:start": "cross-env NODE_ICU_DATA=node_modules/full-icu jasmine --config=jasmine.json",
"typedoc:build": "typedoc --options .typedoc.js",
"typedoc:serve": "npm run typedoc:build && serve doc -p 5005",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"typings:generate": "tsc --emitDeclarationOnly -d --outDir typings",
"typings:check": "tsc --noEmit",
"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",
"check:licenses": "license-checker --production --excludePackages=\"hyperformula@0.0.1\" --onlyAllow=\"MIT; Apache-2.0; BSD-3-Clause; BSD-2-Clause; ISC; BSD; Unlicense\""
},
"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.8.4",
"@microsoft/tsdoc": "^0.12.16",
"@types/jasmine": "^3.5.10",
"@types/jest": "^25.1.3",
"@types/jsdom": "^16.2.1",
"@types/node": "^10.17.19",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@vuepress/plugin-active-header-links": "^1.3.1",
"@vuepress/plugin-search": "^1.3.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"canvas": "^2.6.1",
"cross-env": "^7.0.0",
"env-cmd": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-license-header": "^0.2.0",
"full-icu": "^1.3.1",
"jasmine": "^3.5.0",
"jest": "^25.1.0",
"jsdom": "^16.2.2",
"karma": "^5.0.5",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.5.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"license-checker": "^25.0.1",
"markdown-it-regex": "^0.2.0",
"moment": "^2.22.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"serve": "^11.3.0",
"tar": "^6.0.1",
"ts-jest": "^25.2.1",
"ts-loader": "^7.0.2",
"ts-node": "^8.0.1",
"typedoc": "^0.17.3",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.2",
"vuepress": "^1.3.1",
"vuepress-plugin-clean-urls": "^1.1.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpackbar": "^4.0.0"
},
"dependencies": {
"chevrotain": "^6.5.0",
"core-js": "^3.6.4",
"gpu.js": "2.3.0",
"regenerator-runtime": "^0.13.3",
"tiny-emitter": "^2.1.0"
}
}