-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
48 lines (48 loc) · 1.39 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
{
"author": "Josh Bennett (http://joshbennett.me/)",
"name": "excel-formula",
"description": "Methods to beautify an excel formula and convert it to JavaScript or C#",
"version": "1.5.0",
"homepage": "http://excelformulabeautifier.com/",
"contributors": [
{
"name": "Josh Bennett",
"url": "https://github.com/joshbtn"
},
{
"name": "Adam Schmideg",
"url": "http://adam.schmideg.net"
}
],
"repository": {
"url": "git://github.com/joshatjben/excelFormulaUtilitiesJS.git"
},
"keyword": [
"excel",
"formula",
"convert"
],
"scripts": {
"test": "./node_modules/mocha/bin/mocha & ./node_modules/qunit/bin/cli.js -t ./test/browser/ExcelFormulaUtilities.test.js -d ./src/core.js -c ./src/ExcelFormulaUtilities.js & ./node_modules/qunit/bin/cli.js -c ./dist/excel-formula.min.js -t ./test/browser/ExcelFormulaUtilities.test.js & ./node_modules/qunit/bin/cli.js -c ./dist/excel-formula.js -t ./test/browser/ExcelFormulaUtilities.test.js"
},
"main": "index.js",
"engines": {
"node": "*"
},
"license": "MIT",
"devDependencies": {
"del": "^2.0.2",
"docco": "~0.6.3",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.4.1",
"qunit": "~0.7.7",
"fs.extra": "^1.3.2"
},
"dependencies": {
"bootstrap": "^4.1.3",
"jquery": "^3.2.1"
}
}