-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
{
"name": "opencart",
"version": "1.0.0",
"private": true,
"description": "Ideal Postcodes OpenCart Extension",
"main": "index.js",
"author": {
"name": "Ideal Postcodes",
"email": "support@ideal-postcodes.co.uk",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/opencart/issues",
"email": "support@ideal-postcodes.co.uk"
},
"homepage": "https://github.com/ideal-postcodes/opencart",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/opencart.git"
},
"scripts": {
"semantic-release": "semantic-release",
"start": "make bootstrap",
"build": "NODE_ENV=production rollup -c",
"watch": "rollup -cw",
"lint": "eslint lib/**/*.ts",
"cypress": "cypress run",
"test": "npm start && npm run cypress && make down",
"test:open": "cypress open"
},
"license": "MIT",
"dependencies": {
"@ideal-postcodes/address-finder": "~4.0.0",
"@ideal-postcodes/postcode-lookup": "~1.11.0",
"axios": "~0.21.4"
},
"devDependencies": {
"@babel/preset-env": "~7.19.3",
"@babel/core": "~7.19.3",
"@babel/plugin-transform-runtime": "~7.19.1",
"@babel/preset-typescript": "~7.18.6",
"@cablanchard/eslint-config": "~2.1.1",
"@cablanchard/semantic-release": "~1.3.1",
"@cablanchard/tsconfig": "~2.0.0",
"@google/semantic-release-replace-plugin": "^1.0.2",
"@ideal-postcodes/api-fixtures": "~1.3.0",
"@ideal-postcodes/api-typings": "~2.1.0",
"@ideal-postcodes/jsutil": "~6.1.0",
"@prettier/plugin-php": "~0.18.4",
"@prettier/plugin-xml": "~0.13.1",
"@rollup/plugin-commonjs": "~21.0.2",
"@rollup/plugin-node-resolve": "~13.2.0",
"@rollup/plugin-json": "~4.1.0",
"@types/cypress": "~1.1.3",
"@types/mocha": "~8.2.2",
"@typescript-eslint/eslint-plugin": "~4.0.0",
"@typescript-eslint/parser": "~3.10.1",
"rollup-plugin-ts": "~3.0.2",
"core-js": "~3.25.2",
"cypress": "~7.1.0",
"eslint": "~7.25.0",
"prettier": "~2.2.1",
"rollup": "~2.79.0",
"rollup-plugin-terser": "~7.0.2",
"semantic-release": "~17.4.2",
"typescript": "~4.8.3",
"rollup-plugin-node-globals": "~1.4.0",
"rollup-plugin-node-builtins": "~2.1.2"
}
}