-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
69
70
71
72
73
74
75
{
"name": "WooCommerce",
"version": "1.0.0",
"private": true,
"description": "Ideal Postcodes WooCommerce Extension",
"type": "module",
"main": "index.js",
"prettier": {
"editorconfig": true
},
"author": {
"name": "Ideal Postcodes",
"email": "[email protected]",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/woocommerce/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ideal-postcodes/woocommerce",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/woocommerce.git"
},
"scripts": {
"semantic-release": "semantic-release",
"test": "make bootstrap-80 && npm run cypress:run -- --env CYPRESS_WC_VERSION=80 && make down",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"build": "rollup -c",
"watch": "rollup -cw",
"lint": "eslint lib/**/*.ts",
"prepublishOnly": "npm run lint && npm run build"
},
"license": "Copyright IDDQD Limited",
"devDependencies": {
"@babel/core": "~7.15.5",
"@babel/preset-env": "~7.18.9",
"@babel/plugin-transform-runtime": "~7.23.2",
"@babel/preset-typescript": "~7.23.2",
"@cablanchard/eslint-config": "~2.1.1",
"@cablanchard/semantic-release": "~1.3.4",
"@cablanchard/tsconfig": "~2.0.0",
"@google/semantic-release-replace-plugin": "~1.1.0",
"@ideal-postcodes/api-fixtures": "~1.3.0",
"@ideal-postcodes/api-typings": "~2.0.1",
"@ideal-postcodes/core-browser": "~1.5.2",
"@prettier/plugin-php": "~0.22.2",
"@prettier/plugin-xml": "~3.3.1",
"@rollup/plugin-commonjs": "~21.0.0",
"@rollup/plugin-inject": "~5.0.4",
"@rollup/plugin-node-resolve": "~13.0.0",
"rollup-plugin-ts": "~3.4.5",
"core-js": "~3.24.1",
"core-js-pure": "~3.18.2",
"cypress": "~13.7.2",
"eslint": "~7.25.0",
"prettier": "~3.2.5",
"promise-polyfill": "~8.2.1",
"rollup": "~2.78.0",
"@rollup/plugin-terser": "~0.4.4",
"rollup-plugin-node-builtins": "~2.1.2",
"semantic-release": "~23.0.2",
"@semantic-release/changelog": "~6.0.3",
"@semantic-release/git": "~10.0.1",
"ts-node": "~10.9.1",
"tslint": "~6.1.3",
"typescript": "~4.4.3"
},
"dependencies": {
"@ideal-postcodes/address-finder": "~4.5.3",
"@ideal-postcodes/jsutil": "~7.1.0",
"@ideal-postcodes/postcode-lookup": "~2.0.0"
}
}