This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "checkout-api-spike",
"version": "0.0.0",
"description": "Checkout API",
"scripts": {
"start": "rollup -c -w --environment NODE_ENV:development",
"serve": "npx serve -p 9001",
"dev": "concurrently \"npm run start\" \"npm run serve\"",
"clean": "rimraf ./build",
"compile": "tsc -p ./tsconfig.cjs.json && tsc -p ./tsconfig.esm.json",
"build:umd": "rollup -c",
"build": "npm run clean && npm run build:umd && npm run compile",
"test": "jest",
"lint": "eslint .",
"coverage": "npm run test -- --coverage --watchAll=false --collectCoverageFrom=./src/**/*.ts"
},
"private": false,
"author": "Anwer AR",
"license": "NONE",
"repository": {
"type": "git",
"url": "git+https://github.com/AnwerAR/CheckoutAPI-spike"
},
"bugs": {
"url": "https://github.com/AnwerAR/CheckoutAPI-spike/issues"
},
"homepage": "https://github.com/AnwerAR/CheckoutAPI-spike#readme",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "2.7.1",
"rollup": "^2.79.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.9.3"
},
"files": [
"build",
"dist",
"LICENSE"
]
}