-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·50 lines (50 loc) · 1.29 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": "@nuxtjs/onesignal",
"version": "3.0.0",
"description": "OneSignal module for Nuxt.js",
"repository": "nuxt-community/onesignal-module",
"license": "MIT",
"contributors": [
{
"name": "pooya parsa <[email protected]>"
}
],
"main": "dist/module.js",
"files": [
"dist",
"sdk"
],
"scripts": {
"build": "siroc build && mkdist --src src/runtime --dist dist/runtime",
"dev": "nuxt test/fixture",
"format": "yarn lint --fix",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"defu": "^3.2.2",
"hasha": "^5.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxt/test-utils": "^0.1.2",
"@nuxt/types": "^2.14.12",
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@nuxtjs/pwa": "^3.3.4",
"eslint": "^7.18.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"mkdist": "^0.1.1",
"nuxt-edge": "^2.15.0-26854632.498f8553",
"playwright": "^1.8.0",
"siroc": "^0.6.3",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}