-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"author": "QuantLab <[email protected]>",
"name": "@quantlab/formulajs",
"description": "JavaScript implementation of most Microsoft Excel formula functions",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "[email protected]:quantlabio/formula.js.git"
},
"main": "index.js",
"bin": {
"implementation-stats": "./bin/implementation-stats"
},
"scripts": {
"test": "make test",
"test-browser": "make test-browser",
"lint": "make lint",
"watch": "make watch",
"build": "make build",
"coverage": "make coverage",
"release": "generate-release"
},
"dependencies": {
"bessel": "^0.2.0",
"jStat": "^1.7.0",
"numbro": "^1.11.0",
"numeral": "1.5.3",
"numeric": "1.2.6"
},
"devDependencies": {
"blanket": "^1.1.6",
"browserify": "^13.0.1",
"cli-table": "^0.3.0",
"generate-release": "^0.10.2",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"jshint": "^2.5.2",
"mocha": "^2.5.0",
"mocha-lcov-reporter": "0.0.1",
"mocha-spec-cov": "0.0.3",
"should": "^11.1.0",
"webpack": "^3.5.5"
},
"config": {
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
}
},
"license": "MIT"
}