-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "@kmdrgroch/big-math",
"version": "2.3.0",
"description": "Math library for big numbers",
"main": "index.js",
"scripts": {
"clean": "rimraf \"+(test|src)/**/*+(.d.ts|.js|.map)\"",
"full-clean": "npm run clean && rimraf .nyc_output coverage reports docs .stryker-tmp",
"prebuild": "npm run full-clean && eslint . --ext .ts",
"build": "tsc -p .",
"mutate": "stryker run",
"docs": "typedoc --out docs --exclude test/**/*.*",
"test": "nyc mocha",
"start": "npm run build && npm run test && npm run docs"
},
"author": "kmdrGroch",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@stryker-mutator/core": "4.1.2",
"@stryker-mutator/mocha-runner": "4.1.2",
"@stryker-mutator/typescript-checker": "4.1.2",
"@types/chai": "4.2.14",
"@types/mocha": "8.0.4",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"chai": "4.2.0",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"mocha": "8.2.1",
"nyc": "15.1.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"ts-node": "9.0.0",
"typedoc": "0.19.2",
"typescript": "4.1.2"
}
}