-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) Β· 1.76 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
{
"name": "smolcart.js",
"version": "0.2.3",
"description": "a teeny tiny wrapper for Shopify's Ajax API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "webpack --watch",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"prebuild": "rimraf ./dist",
"build": "npm-run-all --parallel build:*",
"build:tsc": "tsc",
"build:umd": "webpack --output-filename=smolcart.umd.js",
"build:umd.min": "webpack --mode=production --output-filename=smolcart.umd.min.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TinyboxSoftware/smolcart.js.git"
},
"keywords": [
"shopify",
"cart",
"wrapper",
"ajax-api"
],
"author": "@MykalMachon",
"license": "MIT",
"bugs": {
"url": "https://github.com/TinyboxSoftware/smolcart.js/issues"
},
"homepage": "https://github.com/TinyboxSoftware/smolcart.js#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@types/fetch-mock": "^7.3.3",
"@types/jest": "^26.0.16",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.12.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^24.1.3",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-webpack-resolver": "^0.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.9",
"typescript": "^4.1.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}