This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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": "typeform-elements",
"version": "2.0.0",
"description": "Custom elements for easy use of Typeform",
"main": "dist/index.cjs.js",
"browser": "dist/typeform-elements.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && rollup -c --environment PROD",
"watch": "rimraf dist && rollup -c --watch",
"test": "echo \"No tests yet, but we will get there...\"",
"release:major": "changelog -M && git add . && git commit -m 'chore(release): major version release' && npm version major",
"release:minor": "changelog -m && git add . && git commit -m 'chore(release): minor version release' && npm version minor",
"release:patch": "changelog -p && git add . && git commit -m 'chore(release): patch version release' && npm version patch",
"prepare": "npm run build"
},
"contributors": [
"Michael Solati <mkslt04@gmail.com>",
"Nicolas Grenié <nicolas.grenie@gmail.com>"
],
"homepage": "https://developer.typeform.com/",
"repository": {
"type": "git",
"url": "https://github.com/Typeform/typeform-elements.git"
},
"bugs": {
"url": "https://github.com/Typeform/typeform-elements/issues"
},
"readme": "README.md",
"license": "MIT",
"keywords": [
"typeform",
"components",
"elements",
"web components",
"custom elements"
],
"files": [
"dist/**",
"CHANGELOG.md",
"LICENSE.md",
"package-lock.json",
"package.json",
"README.md"
],
"dependencies": {
"@typeform/embed": "^1.28.2",
"lit": "^2.1.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"generate-changelog": "1.8.0",
"node-sass": "^7.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"rollup-plugin-copier": "1.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-scss": "3.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
}
}