-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
63
64
65
66
67
68
{
"name": "nuxt-chiffre",
"version": "0.3.0",
"description": "Chiffre Analytics for Nuxt.js",
"author": {
"name": "Romain Clement",
"email": "contact@romain-clement.net",
"url": "https://romain-clement.net"
},
"maintainers": [
{
"name": "Romain Clement",
"email": "contact@romain-clement.net",
"url": "https://romain-clement.net"
},
{
"name": "François Best",
"email": "contact@francoisbest.com",
"url": "https://francoisbest.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/chiffre-io/nuxt-chiffre.git"
},
"bugs": {
"url": "https://github.com/chiffre-io/nuxt-chiffre/issues"
},
"homepage": "https://github.com/chiffre-io/nuxt-chiffre#readme",
"license": "MIT",
"keywords": [
"analytics",
"e2ee"
],
"files": [
"/dist"
],
"main": "dist/module.js",
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc",
"build": "npm run clean && npm run compile",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --fix --ext .ts,.js .",
"test": "jest"
},
"devDependencies": {
"@nuxt/types": "^2.14.12",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "4.x",
"jest": "^26.6.3",
"nuxt": "^2.14.12",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}