This repository was archived by the owner on Oct 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.55 KB
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
63
64
65
66
67
68
{
"name": "nuxt-userbase-module",
"version": "0.4.1",
"description": "Nuxt Userbase integration",
"author": "Artjom Löbsack <me@ceigh.com> (https://ceigh.com)",
"repository": "github:ceigh/nuxt-userbase-module",
"keywords": [
"nuxt",
"nuxt-module",
"nuxt-plugin",
"userbase"
],
"main": "dist/src/module.js",
"files": [
"dist/src"
],
"license": "MIT",
"scripts": {
"watch": "tsc --watch",
"lint": "eslint --ext .ts,.js --ignore-path .gitignore",
"test": "tsc --module commonjs && ava --fail-fast",
"prepack": "tsc"
},
"eslintConfig": {
"extends": "@nuxtjs/eslint-config-typescript"
},
"lint-staged": {
"*.{ts,js}": "eslint"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"ava": {
"files": [
"test/**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"test/": "dist/test/"
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "tsc --module commonjs && ava --fail-fast"
}
},
"dependencies": {
"userbase-js": "latest"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nuxt/types": "^2.14.7",
"@nuxtjs/eslint-config-typescript": "^3.0.0",
"ava": "^3.13.0",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"nuxt": "^2.14.7",
"typescript": "^4.0.3",
"vue": "^2.6.12",
"vuex": "^3.5.1"
}
}