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
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 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
{
"name": "formula",
"version": "3.8.4",
"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 | faucet",
"docs": "groc src/*.js -o ./docs/code; groc test/*.js -o ./docs/test",
"clean": "rm -rf lib;",
"build": "BABEL_ENV=production npm run build:umd && npm run build:min && npm run docs",
"build:parser": "jison src/parser.jison -m commonjs -o src/parser.js",
"build:umd": "rm -rf lib; mkdir lib; rollup -f=umd -n=Formula src/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/FormBucket/formula.git"
},
"keywords": [
"Spreadsheets",
"JavaScript"
],
"author": "FormBucket LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormBucket/formula/issues"
},
"homepage": "https://github.com/FormBucket/formula#readme",
"devDependencies": {
"buble": "^0.19.3",
"buble-tape-runner": "^1.0.4",
"docco": "^0.7.0",
"eslint": "^1.8.0",
"faucet": "0.0.1",
"groc": "^0.8.0",
"jison": "^0.4.18",
"rollup": "^0.26.2",
"tape": "^4.5.1",
"uglify-js": "^3.3.16"
}
}