-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.46 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
{
"name": "magento",
"version": "1.0.0",
"private": true,
"description": "Ideal Postcodes Magento Extension",
"main": "index.js",
"author": {
"name": "Ideal Postcodes",
"email": "[email protected]",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/magento/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ideal-postcodes/magento",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/magento.git"
},
"scripts": {
"semantic-release": "semantic-release",
"start": "make bootstrap && make set-base-url",
"build": "NODE_ENV=production rollup -c",
"watch": "rollup -cw",
"lint": "eslint lib/**/*.ts",
"lint-fix": "eslint lib/**/*.ts --fix",
"test:e2e": "cypress run --project test/e2e",
"test:e2e:open": "cypress open --project test/e2e",
"test:all": "npm start && npm run test:e2e && make down",
"test:snapshot": "cypress run --project test/snapshot",
"test:snapshot:open": "cypress open --project test/snapshot",
"test:build": "rollup -c test/snapshot/rollup.config.js",
"test:watch": "rollup -c test/snapshot/rollup.config.js -w",
"test": "npm run test:snapshot",
"test:open": "cypress open --project test/snapshot"
},
"release": {
"extends": "@cablanchard/semantic-release"
},
"license": "MIT",
"dependencies": {
"@ideal-postcodes/postcode-lookup": "~1.10.1",
"@ideal-postcodes/address-finder": "~4.5.3",
"axios": "~0.21.4"
},
"devDependencies": {
"@babel/preset-env": "~7.16.11",
"@cablanchard/eslint-config": "~2.1.1",
"@cablanchard/semantic-release": "~1.3.1",
"@cablanchard/tsconfig": "~2.0.0",
"@ideal-postcodes/api-fixtures": "~1.2.0",
"@ideal-postcodes/api-typings": "~2.1.0",
"@ideal-postcodes/jsutil": "~4.6.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",
"@types/cypress": "~1.1.3",
"@types/mocha": "~8.2.2",
"@typescript-eslint/eslint-plugin": "~5.17.0",
"@typescript-eslint/parser": "~5.19.0",
"@wessberg/rollup-plugin-ts": "~1.3.14",
"cypress": "~9.7.0",
"eslint": "~7.32.0",
"prettier": "~2.2.1",
"rollup": "~2.70.1",
"@rollup/plugin-json": "~4.1.0",
"rollup-plugin-terser": "~7.0.2",
"semantic-release": "~19.0.3",
"typescript": "~4.2.4"
}
}