-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "payrex-js",
"version": "0.1.3",
"description": "CommonJS or ES module for PayRex JS",
"keywords": [
"payrex",
"payment processing",
"credit cards",
"api"
],
"homepage": "https://github.com/payrexhq/payrex-js",
"author": "PayRex Engineering <developers@payrexhq.com>",
"module": "dist/index.js",
"common": "dist/index.cjs",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/payrexhq/payrex-js.git"
},
"bugs": {
"url": "https://github.com/payrexhq/payrex-js/issues"
},
"targets": {
"common": {
"sourceMap": false,
"isLibrary": true,
"optimize": true,
"scopeHoist": true,
"outputFormat": "commonjs"
},
"module": {
"sourceMap": false,
"isLibrary": true,
"optimize": true,
"scopeHoist": true,
"outputFormat": "esmodule"
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"experimentalDecorators": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "parcel build",
"slint": "standard",
"prepublishOnly": "npm run build",
"slint-fix": "standard --fix",
"ci": "npm run slint && npm run ts",
"ts": "tsc -p tsconfig.json",
"ci-fix": "npm run slint-fix && npm run ts",
"build:watch": "nodemon --legacy-watch --watch src -e js,ts,tsx --exec 'parcel build'",
"dev": "concurrently \"npm:build:watch\" \"npm:serve\""
},
"license": "MIT",
"devDependencies": {
"@parcel/transformer-inline-string": "^2.12.0",
"@types/node": "^20.12.13",
"autoprefixer": "^10.4.15",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1",
"standard": "^17.1.0",
"ts-standard": "^12.0.2"
},
"dependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"parcel": "^2.12.0",
"typescript": "^5.4.5"
}
}