-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "@lezram/math-interval",
"version": "1.1.1",
"description": "Working with mathematical intervals",
"main": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"scripts": {
"build": "npm run build:node && npm run build:browser",
"build:node": "tsc",
"build:browser": "webpack",
"prepublishOnly": "npm run ci",
"ci": "npm run test-build & npm run coverage & wait",
"test-build": "npm run build && node e2e/test-build.js",
"test": "jest",
"coverage": "jest --coverage --coveragePathIgnorePatterns=src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lezram/math-interval.git"
},
"keywords": [
"math",
"interval"
],
"author": "lezram",
"license": "MIT",
"devDependencies": {
"@testdeck/jest": "0.3.2",
"@types/jest": "29.2.2",
"jest": "29.3.1",
"terser-webpack-plugin": "5.3.6",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"webpack": "5.75.0",
"webpack-cli": "4.10.0"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/lezram/math-interval/issues"
},
"homepage": "https://github.com/lezram/math-interval#readme"
}