forked from robbieaverill/commerce.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "@chec/commerce.js",
"version": "2.1.1",
"main": "lib/index.js",
"description": "Easy to use JavaScript SDK for managing carts and selling products from your Chec store",
"homepage": "https://commercejs.com",
"keywords": [
"commerce",
"shop",
"ecommerce",
"chec",
"chec.io",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/chec/commerce.js"
},
"bugs": {
"url": "https://github.com/chec/commerce.js/issues/new"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "rollup -c"
},
"author": "Chec Platform Inc",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/runtime": "^7.7.4",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^26.5.2",
"jest-cli": "^24.9.0",
"prettier": "^1.18.2",
"rollup": "^2.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
},
"jest": {
"testRegex": ".*-test.jsx?$",
"setupFiles": [
"<rootDir>/jest.init.js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"axios": "^0.20.0"
}
}