-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.36 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
{
"author": "Gavin Sykes <gavin@gavinsykes.uk> (https://gavinsykes.uk/)",
"bugs": {
"url": "https://github.com/gavinsykes/complete-round/issues"
},
"description": "A function to offer more rounding options for numbers in JavaScript and TypeScript",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/istanbul": "^0.4.30",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.4",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"chai": "^4.2.0",
"codecov": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"ts-loader": "^7.0.4",
"ts-node": "^8.10.1",
"typedoc": "^0.17.7",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^3.9.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^5.0.9"
},
"homepage": "https://github.com/gavinsykes/complete-round#readme",
"keywords": [
"math",
"mathematics",
"maths",
"number",
"numbers",
"round",
"rounding"
],
"license": "MIT",
"main": "dist/main.js",
"name": "complete-round",
"repository": {
"type": "git",
"url": "git+https://github.com/gavinsykes/complete-round.git"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build:dev": "",
"ci": "npm run build && npm run test:cover",
"clean": "shx rm -rf coverage dist docs .nyc_output",
"clean-slate-protocol-sir": "shx rm -rf coverage dist docs node_modules .nyc_output",
"docs": "typedoc --theme minimal --out ./docs --mode modules --tsconfig ./tsconfig.json ./dev/src",
"postversion": "git push origin master && git push origin master --tags && npm publish",
"preversion": "npm run build && npm run test && npm run docs && git add docs && git commit -m\"Bumping version and updating docs\"",
"setup": "npm install",
"test": "mocha -r ts-node/register dev/**/*.spec.ts && alex && npx eslint ./dev/**/*",
"test:codecov": "npm run test:cover && bash <(curl -s https://codecov.io/bash)",
"test:cover": "nyc --reporter=text --reporter=text-lcov --reporter=html --reporter=json mocha -r ts-node/register dev/**/*.spec.ts"
},
"types": "./dist/index.d.ts",
"version": "1.4.3"
}