forked from mauriciopoppe/interval-arithmetic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "interval-arithmetic",
"version": "0.6.6",
"description": "An implementation of an algebraically closed interval system of the extended real number set",
"bugs": "https://github.com/maurizzzio/interval-arithmetic/issues",
"license": "BSL-1.0",
"main": "index.js",
"author": "Mauricio Poppe <mauricio.poppe@gmail.com>",
"files": [
"index.js",
"lib/**",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/maurizzzio/interval-arithmetic"
},
"keywords": [
"interval-arithmetic",
"math",
"closed",
"connected",
"set",
"real",
"interval",
"arithmetic"
],
"devDependencies": {
"coveralls": "2.11.4",
"docdash": "^0.1.0",
"doctoc": "0.13.0",
"gh-pages-deploy": "^0.4.2",
"istanbul": "0.3.21",
"jsdoc": "3.4.0",
"mocha": "2.3.3",
"mocha-lcov-reporter": "0.0.2",
"nodemon": "1.7.1",
"standard": "4.5.4"
},
"scripts": {
"istanbul": "istanbul cover _mocha -- -R spec test/index.js",
"lint": "standard",
"codecov": "npm run istanbul && codecov < coverage/lcov.info",
"test": "mocha -R spec test/index.js",
"test:watch": "nodemon --watch lib --watch test --watch index.js --exec 'npm test'",
"start": "npm run test:watch",
"toc": "./node_modules/.bin/doctoc .",
"docs": "jsdoc --configure jsdoc.json",
"docs:watch": "nodemon --watch lib --watch index.js --exec 'npm run docs'",
"deploy": "gh-pages-deploy",
"redirect": "node redirect"
},
"gh-pages-deploy": {
"staticpath": "docs/interval-arithmetic",
"prep": [
"lint",
"test",
"docs",
"redirect"
]
},
"testling": {
"harness": "mocha",
"files": "test/index.js",
"browsers": [
"chrome/latest"
]
},
"dependencies": {
"is-safe-integer": "^1.0.1",
"nextafter": "^1.0.0",
"typedarray": "0.0.6",
"xtend": "^4.0.1"
}
}