-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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": "@luterek/orderno",
"version": "0.1.4",
"description": "Package for creating distinct order numbers in a high volume distributed system.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf lib",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md,css,scss}\"",
"lint": "echo TODO",
"upgrade-deps": "npm upgrade-interactive --latest",
"release": "standard-version --preset angular",
"postrelease": "git push --follow-tags origin main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jluterek/orderno.git"
},
"keywords": [
"order number",
"ecommerce",
"commerce"
],
"author": "James Luterek",
"license": "MIT",
"bugs": {
"url": "https://github.com/jluterek/orderno/issues"
},
"homepage": "https://github.com/jluterek/orderno#readme",
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/node": "^13.7.0",
"jest": "^25.1.0",
"jest-mock-random": "^1.1.1",
"mockdate": "^3.0.2",
"rimraf": "^3.0.1",
"standard-version": "^9.0.0",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}