-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "context-element",
"version": "0.0.0-development",
"description": "An HTMLElement that makes it easy to render data or array in html page",
"main": "index.js",
"keywords": [
"webcomponent",
"html"
],
"scripts": {
"test": "jest --coverage",
"build": "rollup --config rollup.config.js",
"todo": "parcel ./example/todo/todo.html",
"commit": "git-cz",
"storybook": "start-storybook",
"build-storybook": "build-storybook -c .storybook -o docs"
},
"author": "Arif Rachim",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/parser": "^7.10.3",
"@babel/types": "^7.10.3",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/html": "^5.3.19",
"@storybook/preset-typescript": "^3.0.0",
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"babel-loader": "^8.1.0",
"codecov": "^3.7.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"faker": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^5.0.5",
"jest": "^26.0.1",
"parcel-bundler": "^1.12.4",
"rollup": "^2.17.1",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.1.0",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/marsa-emreef/context-element.git"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"release": {
"branches": [
"master"
]
}
}