-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "@hexdigital/nuxt-intercom",
"version": "0.0.10",
"description": "Intercom Module for Nuxt.js",
"repository": "hex-digital/nuxt-intercom",
"license": "MIT",
"contributors": [
{
"name": "Jamie Warburton <[email protected]>"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example",
"build": "nuxt build example",
"start": "nuxt start example",
"generate": "nuxt generate example",
"lint": "eslint --ext .js,.vue example lib test",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"@types/jest": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"husky": "^4.2.3",
"jest": "latest",
"lint-staged": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}