@builder.io/plugin-sfcc-commerce-api 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,127 @@
1
+ {
2
+ "name": "@builder.io/plugin-sfcc-commerce-api",
3
+ "version": "0.0.2",
4
+ "description": "",
5
+ "keywords": [],
6
+ "main": "dist/plugin.system.js",
7
+ "unpkg": "dist/plugin.system.js",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "author": "Steve Sewell <steve@builder.io>",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": ""
15
+ },
16
+ "license": "MIT",
17
+ "engines": {
18
+ "node": ">=6.0.0"
19
+ },
20
+ "scripts": {
21
+ "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
22
+ "prebuild": "rimraf dist",
23
+ "build": "rollup -c rollup.config.ts",
24
+ "release:dev": "npm run build && npm version prerelease --no-git-tag-version && npm publish --tag dev",
25
+ "start": "SERVE=true rollup -c rollup.config.ts -w",
26
+ "test": "jest --coverage",
27
+ "test:watch": "jest --coverage --watch",
28
+ "test:prod": "npm run lint && npm run test -- --no-cache",
29
+ "report-coverage": "cat ./coverage/lcov.info | coveralls",
30
+ "commit": "git-cz",
31
+ "semantic-release": "semantic-release",
32
+ "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
33
+ "travis-deploy-once": "travis-deploy-once"
34
+ },
35
+ "lint-staged": {
36
+ "{src,test}/**/*.ts": [
37
+ "prettier --write",
38
+ "git add"
39
+ ]
40
+ },
41
+ "config": {
42
+ "commitizen": {
43
+ "path": "node_modules/cz-conventional-changelog"
44
+ }
45
+ },
46
+ "jest": {
47
+ "transform": {
48
+ ".(ts|tsx)": "ts-jest"
49
+ },
50
+ "testEnvironment": "node",
51
+ "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
52
+ "moduleFileExtensions": [
53
+ "ts",
54
+ "tsx",
55
+ "js"
56
+ ],
57
+ "coveragePathIgnorePatterns": [
58
+ "/node_modules/",
59
+ "/test/"
60
+ ],
61
+ "coverageThreshold": {
62
+ "global": {
63
+ "branches": 90,
64
+ "functions": 95,
65
+ "lines": 95,
66
+ "statements": 95
67
+ }
68
+ },
69
+ "collectCoverageFrom": [
70
+ "src/*.{js,ts}"
71
+ ]
72
+ },
73
+ "commitlint": {
74
+ "extends": [
75
+ "@commitlint/config-conventional"
76
+ ]
77
+ },
78
+ "devDependencies": {
79
+ "@builder.io/react": "^1.1.29",
80
+ "@commitlint/cli": "^7.1.2",
81
+ "@commitlint/config-conventional": "^7.1.2",
82
+ "@rollup/plugin-commonjs": "^19.0.1",
83
+ "@rollup/plugin-json": "^4.1.0",
84
+ "@rollup/plugin-node-resolve": "^13.0.2",
85
+ "@types/jest": "^23.3.2",
86
+ "@types/node": "^10.17.5",
87
+ "@types/react": "^16.9.11",
88
+ "@types/shopify-buy": "^2.10.4",
89
+ "colors": "^1.3.2",
90
+ "commitizen": "^3.0.0",
91
+ "coveralls": "^3.0.2",
92
+ "cross-env": "^5.2.0",
93
+ "cz-conventional-changelog": "^2.1.0",
94
+ "esbuild": "^0.12.15",
95
+ "husky": "^1.0.1",
96
+ "i": "^0.3.6",
97
+ "jest": "^23.6.0",
98
+ "jest-config": "^23.6.0",
99
+ "lint-staged": "^8.0.0",
100
+ "lodash.camelcase": "^4.3.0",
101
+ "prettier": "^1.14.3",
102
+ "prompt": "^1.0.0",
103
+ "replace-in-file": "^3.4.2",
104
+ "rimraf": "^2.6.2",
105
+ "rollup": "^2.53.2",
106
+ "rollup-plugin-dts": "^3.0.2",
107
+ "rollup-plugin-esbuild": "^4.5.0",
108
+ "rollup-plugin-node-globals": "^1.4.0",
109
+ "rollup-plugin-node-polyfills": "^0.2.1",
110
+ "rollup-plugin-replace": "^2.2.0",
111
+ "rollup-plugin-serve": "^1.0.1",
112
+ "semantic-release": "^15.9.16",
113
+ "shelljs": "^0.8.3",
114
+ "travis-deploy-once": "^5.0.9",
115
+ "ts-jest": "^23.10.2",
116
+ "ts-node": "^7.0.1",
117
+ "tslint": "^5.11.0",
118
+ "tslint-config-prettier": "^1.15.0",
119
+ "tslint-config-standard": "^8.0.1",
120
+ "typedoc": "^0.12.0",
121
+ "typescript": "^3.0.3"
122
+ },
123
+ "dependencies": {
124
+ "@builder.io/commerce-plugin-tools": "^0.2.1-4",
125
+ "commerce-sdk-isomorphic": "^1.7.0"
126
+ }
127
+ }