-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.44 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
69
70
71
72
73
74
75
76
77
{
"name": "@firstclasspostcodes/svelte",
"description": "Firstclasspostcodes component library for the Svelte framework",
"homepage": "https://github.com/firstclasspostcodes/firstclasspostcodes-js-plugin",
"author": "Firstclasspostcodes <support@firstclasspostcodes.com> (https://firstclasspostcodes.com/)",
"keywords": [
"svelte",
"postcodes",
"postcode lookup",
"firstclasspostcodes",
"api"
],
"version": "0.0.0",
"svelte": "lib/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"browser": "dist/browser.js",
"scripts": {
"commit": "npx git-cz",
"build": "parcel build lib/browser.js --target browser",
"postbuild": "rollup -c",
"lint": "eslint . --ext .js --ext .svelte --ignore-path .gitignore",
"test": "NODE_ENV=test jest --coverage",
"cypress": "cypress run --headless",
"start": "parcel index.html",
"postinstall": "cp .browserslistrc.svelte node_modules/svelte/.browserslistrc 2>/dev/null || :",
"prepublishOnly": "mv README.md BROWSER.md && mv NPM.md README.md",
"postpublish": "mv README.md NPM.md && mv BROWSER.md README.md"
},
"targets": {
"browser": {
"includeNodeModules": true,
"engines": {
"browsers": [
"> 1%",
"not dead"
]
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstclasspostcodes/firstclasspostcodes-js-plugin.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/firstclasspostcodes/firstclasspostcodes-js-plugin/issues"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@google/semantic-release-replace-plugin": "^1.0.2",
"@rollup/plugin-node-resolve": "^10.0.0",
"@semantic-release/git": "^9.0.0",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/svelte": "^3.0.0",
"babel-jest": "^26.6.3",
"cypress": "^5.6.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-svelte3": "^2.7.3",
"git-cz": "^4.7.3",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-svelte": "^4.0.6",
"rollup": "^2.33.1",
"rollup-plugin-svelte": "^6.1.1",
"svelte": "^3.29.4",
"svelte-jester": "^1.1.5"
},
"dependencies": {}
}