forked from formula/formula
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.49 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.49 KB
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
{
"name": "formula",
"version": "3.18.0",
"description": "Formula compiler and function library",
"main": "index.js",
"types": "index.d.js",
"scripts": {
"all": "npm run build && npm test",
"test": "buble-tape-runner test/*.js",
"docs": "documentation build src/*.js -f html -o ./docs/code; documentation build test/*.js -f html -o ./docs/test",
"clean": "rm -rf lib;",
"build": "BABEL_ENV=production npm run build:umd && npm run build:min && npm run docs; rm lib/formula.mjs.js; rm lib/formula.js",
"build:parser": "jison src/parser.jison -m commonjs -o src/parser.js",
"build:umd": "rm -rf lib; mkdir lib; rollup --config rollup.config.js -f=umd -n=Formula src/functions.js; mv output/functions.js lib/formula.mjs.js; buble lib/formula.mjs.js > lib/formula.js",
"build:min": "uglifyjs lib/formula.js > lib/formula.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formula/formula.git"
},
"keywords": [
"Spreadsheets",
"JavaScript"
],
"author": "JC Fisher",
"license": "MIT",
"bugs": {
"url": "https://github.com/formula/formula/issues"
},
"homepage": "https://github.com/formula/formula#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.5",
"buble": "^0.19.7",
"buble-tape-runner": "^1.0.4",
"documentation": "^13.2.5",
"jison": "^0.4.18",
"rollup": "^2.79.0",
"tape": "^4.10.2",
"uglify-js": "^3.6.0"
},
"dependencies": {
"jsonpath-plus": "^6.0.1"
}
}