-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "@thomaschaplin/cusip-generator",
"description": "Generate a valid CUSIP",
"main": "build/index.js",
"files": [
"build",
"LICENSE",
"readme.md",
"assets/logo.png"
],
"scripts": {
"test": "jest --runInBand",
"test:coverage": "rm -rf coverage && npm test -- --coverage",
"test:mutation": "stryker run",
"build": "rm -rf ./build && tsc",
"watch": "npm run build -- --watch",
"pre-push": "./prepush.sh",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm ci && npm run build",
"clean": "rm -rf ./build && rm -rf ./coverage && rm -rf ./node_modules && rm -rf ./reports"
},
"repository": {
"type": "git",
"url": "https://github.com/thomaschaplin/cusip-generator"
},
"bugs": {
"url": "https://github.com/thomaschaplin/cusip-generator/issues"
},
"homepage": "https://github.com/thomaschaplin/cusip-generator#readme",
"keywords": [
"cusip",
"generator",
"cusip-generator",
"thomaschaplin"
],
"author": "Thomas Chaplin <[email protected]>",
"license": "MIT",
"devDependencies": {
"jest": "^29.5.0",
"kelonio": "^0.9.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"typescript": "^5.1.6",
"@stryker-mutator/core": "^7.1.0",
"@stryker-mutator/jest-runner": "^7.1.0",
"@stryker-mutator/typescript-checker": "^7.1.0",
"husky": "^8.0.3"
},
"version": "1.0.21"
}