-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "@dvdagames/js-die-roller",
"version": "2.0.1",
"description": "Rolling complex die notation with variables and functions",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.js",
"scripts": {
"build": "npm run build:esbuild && npm run build:typescript",
"build:esbuild": "./scripts/esbuild.js",
"build:typescript": "tsc --emitDeclarationOnly --outDir lib",
"clean": "rimraf lib",
"demo": "node ./examples/demo.mjs",
"prebuild": "npm run clean",
"predemo": "npm run build",
"test": "jest"
},
"author": "DVDA Games",
"license": "ISC",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{ts,tsx,js,jsx,md,mdx}": [
"prettier --write"
]
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"esbuild": "^0.14.31",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}