This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
87 lines (87 loc) · 2.49 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
{
"name": "hot-formula-parser",
"version": "4.0.0",
"description": "Formula parser",
"main": "./index",
"module": "./index.mjs",
"jsnext:main": "./index.mjs",
"jsdelivr": "dist/formula-parser.min.js",
"unpkg": "dist/formula-parser.min.js",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"scripts": {
"clean": "rimraf tmp coverage",
"lint": "eslint src test",
"check": "npm run lint && npm run test",
"test": "cross-env BABEL_ENV=commonjs jest",
"coverage": "cross-env BABEL_ENV=commonjs jest --coverage",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir tmp",
"build:es": "cross-env BABEL_ENV=es babel src --out-file-extension .mjs --out-dir tmp",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"generate-parser": "cd src/grammar-parser && jison grammar-parser.jison",
"release": "generate-release",
"postbuild": "node ./scripts/prepare-package"
},
"repository": {
"type": "git",
"url": "https://github.com/handsontable/formula-parser.git"
},
"keywords": [
"formula",
"formulas",
"parser",
"formula-parser",
"excel",
"spreadsheet"
],
"author": "Handsoncode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/handsontable/formula-parser/issues"
},
"homepage": "https://github.com/handsontable/formula-parser",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"babel-loader": "^8.2.2",
"cross-env": "^5.2.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.14.0",
"fs-extra": "^9.0.1",
"generate-release": "^1.1.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jison": "^0.4.17",
"rimraf": "^3.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@handsontable/formulajs": "^2.0.2",
"tiny-emitter": "^2.1.0"
},
"jest": {
"setupFilesAfterEnv": [
"./test/index.js"
],
"testPathIgnorePatterns": [
"./test/index.js"
],
"roots": [
"./test"
],
"testRegex": "(test\\/index\\.js|/test/.*.js)$",
"collectCoverageFrom": [
"**/*.{js}",
"!src/grammar-parser/**"
]
}
}