forked from surgieboi/backendless-ecommerce-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.16 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
{
"name": "@dolacheckout/bep",
"author": {
"name": "Dola Engineering",
"email": "[email protected]"
},
"module": "dist/index.js",
"version": "0.1.7",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "parcel src/index.ts",
"build": "npm run lint && parcel build src/index.ts",
"lint": "tsc --noEmit",
"size": "size-limit",
"analyze": "size-limit --why"
},
"repository": {
"type": "git",
"url": " https://github.com/dolapay/backendless-ecommerce-platform.git"
},
"dependencies": {
"nanoid": "^3.1.20"
},
"resolutions": {
"node-forge": "0.10.0"
},
"peerDependencies": {},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.7.0",
"@types/node": "^14.14.36",
"parcel-bundler": "^1.12.4",
"size-limit": "^4.7.0",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
}
}