-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 2.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
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
{
"name": "interval-arithmetic",
"version": "1.1.2",
"description": "An implementation of an algebraically closed interval system of the extended real number set",
"keywords": [
"interval-arithmetic",
"math",
"closed",
"connected",
"set",
"real",
"interval",
"arithmetic"
],
"bugs": "https://github.com/mauriciopoppe/interval-arithmetic/issues",
"repository": {
"type": "git",
"url": "https://github.com/mauriciopoppe/interval-arithmetic"
},
"license": "BSL-1.0",
"author": "Mauricio Poppe <[email protected]>",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && npm run build:library",
"build:library": "tsc && tsc -m es6 --outDir lib-esm && webpack",
"clean": "rm -rf dist lib lib-esm",
"deploy": "npm run docs",
"docs": "npm run docs:generate && npm run docs:deploy",
"docs:generate": "typedoc --out dist/docs --exclude \"**/?(*.)+(test).ts\" --theme default src",
"docs:deploy": "touch dist/docs/.nojekyll && gh-pages --dotfiles -d dist/docs",
"test": "jest --coverage --no-cache",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"dependencies": {
"nextafter": "^1.0.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/assert": "^1.4.6",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^15.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"jest": "^28.1.3",
"kind-of": "6.0.3",
"prettier": "^2.0.2",
"source-map-loader": "^0.2.4",
"standard": "^14.3.3",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"typedoc": "^0.23.12",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"gh-pages-deploy": {
"staticpath": "docs/interval-arithmetic",
"prep": [
"docs"
]
}
}