-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
49 lines (49 loc) · 1.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
{
"name": "fast-formula-parser",
"version": "1.0.19",
"description": "fast excel formula parser",
"repository": "https://github.com/LesterLyu/fast-formula-parser",
"main": "index.js",
"scripts": {
"test": "mocha -s 0",
"test:f": "mocha test/formulas",
"prepublishOnly": "yarn run build && yarn run test",
"postpublish": "yarn run publish:docs",
"build": "webpack",
"diagram": "node grammar/diagram.js",
"docs": "yarn run diagram && jsdoc --configure .jsdoc.json --verbose",
"publish:docs": "yarn run docs && yarn run coverage && gh-pages -d docs",
"coverage": "nyc -x ssf -x test --reporter=html --reporter=text --report-dir=docs/coverage mocha",
"coverage:f": "nyc -n \"formulas/functions/**\" -n \"formulas/operators.js\" --reporter=html --reporter=text mocha test/formulas",
"coverage:server": "nyc -x ssf -x test --reporter=text-lcov --report-dir=docs/coverage mocha | coveralls"
},
"keywords": [
"excel",
"formula",
"spreadsheet",
"javascript",
"js",
"parser",
"excel-formula"
],
"author": "Lester(Dishu) Lyu",
"license": "MIT",
"dependencies": {
"bahttext": "^1.1.0",
"bessel": "^1.0.2",
"chevrotain": "^7.0.1",
"jstat": "^1.9.3"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"docdash": "^1.2.0",
"gh-pages": "^3.1.0",
"jsdoc": "^3.6.5",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"webpack": "^4.44.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
}
}