-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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": "nuxt-cision-block",
"version": "1.0.0",
"description": "Cision Block module for nuxt",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"lib/*.d.ts"
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "npm run clean && tsc",
"clean": "rm -rf ./lib",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"postbuild": "cp -R src/*.vue src/pages lib/.",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.vue\"",
"lint": "eslint --ext .ts,.vue ./src"
},
"author": "Krister Andersson <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Cyclonecode/nuxt-cision-block.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.24.0",
"lru-cache": "^6.0.0",
"md5": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/lru-cache": "^5.1.1",
"@types/md5": "^2.3.1",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.3.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"vue": "^2.6.14"
},
"bugs": {
"url": "https://github.com/Cyclonecode/nuxt-cision-block/issues"
},
"homepage": "https://github.com/Cyclonecode/nuxt-cision-block#readme",
"directories": {
"lib": "lib",
"test": "tests"
}
}