-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "fzero",
"version": "0.2.4",
"description": "Find a zero of a univariate function.",
"main": "index.js",
"scripts": {
"test": "./node_modules/tape/bin/tape ./test/*.js | ./node_modules/tap-spec/bin/cmd.js",
"lint": "jshint index.js",
"coverage": "istanbul cover ./node_modules/tape/bin/tape --report lcovonly -- ./test/*.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinybike/fzero.git"
},
"keywords": [
"zero",
"root",
"function",
"solve",
"falcon punch"
],
"author": "Jack Peterson <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tinybike/fzero/issues"
},
"homepage": "https://github.com/tinybike/fzero#readme",
"dependencies": {
"decimal.js": "^5.0.3"
},
"devDependencies": {
"browserify": "^13.0.0",
"coveralls": "^2.11.6",
"del": "^2.2.0",
"gulp": "^3.9.0",
"istanbul": "^0.4.2",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"uglify-js": "^2.6.1"
}
}