-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
58
59
60
61
62
{
"name": "@jovo-community/plugin-badgerific",
"version": "1.0.1",
"description": "A Jovo Framework plugin for badges and achievements using the Badgerific library.",
"main": "dist/cjs/index.js",
"module": "dist/esm5/index.js",
"es2015": "dist/esm2015/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -b tsconfig.build.cjs.json tsconfig.build.esm5.json tsconfig.build.esm2015.json tsconfig.build.types.json",
"watch": "tsc -b tsconfig.build.cjs.json tsconfig.build.esm5.json tsconfig.build.esm2015.json tsconfig.build.types.json --watch",
"prettier": "prettier -w -l src test package.json",
"eslint": "eslint src test --fix --ext .ts",
"rimraf": "rimraf dist",
"test": "jest --runInBand",
"publish": "npm publish --access public"
},
"author": "Mark Tucker",
"license": "MIT",
"homepage": "https://github.com/jovo-community/plugin-badgerific#readme",
"repository": {
"type": "git",
"url": "https://github.com/jovo-community/plugin-badgerific"
},
"bugs": {
"url": "https://github.com/jovo-community/plugin-badgerific/issues"
},
"keywords": [
"jovo",
"jovo framework",
"badges",
"achievements",
"games",
"gamification"
],
"dependencies": {
"@jovotech/framework": "^4.2.13",
"badgerific": "^1.0.4"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^13.11.0",
"@types/validator": "^13.7.2",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.7.4"
},
"prettier": "./.prettierrc.js"
}