This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "dice-roller-dnd",
"version": "1.0.7",
"description": "A basic dice roller fo DnD 5e. Works in evergreen browsers, Node, and should work back to IE11.",
"main": "dist/dice-roller-dnd.cjs.js",
"browser": {
"full": "dist/dice-roller-dnd.umd.js",
"minimal": "dist/dice-roller-dnd.minimal.umd.js"
},
"module": "dist/dice-roller-dnd.esm.js",
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"test": "jest"
},
"repository": "https://github.com/alexkcollier/dice-roller-dnd.git",
"author": "Alex Collier",
"license": "MIT",
"devDependencies": {
"@acollier/eslint-config": "^2.1.0",
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^8.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"babel-jest": "^27.0.2",
"eslint": "^7.0.0",
"husky": "^7.0.1",
"jest": "^27.0.4",
"prettier": "^2.0.1",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.0",
"rollup": "^2.0.5",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^18.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@babel/runtime": "^7.7.7",
"core-js": "^3.6.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}