-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "@cocreate/checkout",
"version": "1.0.0",
"description": "A simple checkout component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
"keywords": [
"checkout",
"cocreate",
"low-code-framework",
"no-code-framework",
"cocreatejs",
"cocreatejs-component",
"cocreate-framework",
"no-code",
"low-code",
"collaborative-framework",
"realtime",
"realtime-framework",
"collaboration",
"shared-editing",
"html5-framework",
"javascript-framework"
],
"publishConfig": { "access": "public" },
"scripts": {
"start": "npx webpack --config webpack.config.js",
"build": "NODE_ENV=production npx webpack --config webpack.config.js",
"dev": "npx webpack --config webpack.config.js --watch",
"docs": "node ./node_modules/@cocreate/docs/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoCreate-app/CoCreate-checkout.git"
},
"author": "CoCreate LLC",
"license": "MIT",
"bugs": { "url": "https://github.com/CoCreate-app/CoCreate-checkout/issues" },
"homepage": "https://cocreate.app/docs/checkout",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/CoCreate-app"
},
"main": "./src/index.js",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.5.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-log": "^3.0.1",
"file-loader": "^6.2.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1"
},
"dependencies": { "@cocreate/docs": "^1.0.3" }
}