This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 2.54 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "sveltemantic",
"version": "0.1.1-alpha.1",
"description": "Fomantic-UI components for Svelte 3",
"main": "index.js",
"module": "index.mjs",
"files": [
"index.*",
"behaviors",
"collections",
"elements",
"modules",
"views",
"lib",
"README.md",
"LICENSE"
],
"engines": {
"node": ">= 8"
},
"scripts": {
"build": "rollup -c",
"build:doc": "rollup -c --environment BUILD:docs",
"build:sveltemantic": "rollup -c --environment BUILD:package",
"lint-md": "remark .",
"prepublishOnly": "run-s build:sveltemantic",
"postpublish": "rimraf behaviors collections elements modules views lib index.js index.mjs",
"cp:report": "jscpd .",
"test": "run-s test:snapshot test:coverage",
"test:snapshot": "jest -u",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | codacy-coverage",
"watch": "rollup -c -w",
"watch:doc": "rollup -c -w --environment BUILD:docs",
"watch:sveltemantic": "rollup -c -w --environment BUILD:package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/titans-inc/sveltemantic.git"
},
"author": "Devi Prasad <deviprsd21@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/titans-inc/sveltemantic/issues"
},
"homepage": "https://github.com/titans-inc/sveltemantic#readme",
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"dependencies": {
"clsx": "^1.0.4",
"svelte": "^3.6.9"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/svelte": "^1.7.1",
"babel-jest": "^24.8.0",
"codacy-coverage": "^3.4.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"jest-transform-svelte": "^2.0.2",
"npm-run-all": "^4.1.5",
"rollup": "^1.12.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.1.1",
"jscpd": "^2.0.15",
"jscpd-badge-reporter": "^1.1.3",
"remark-cli": "^7.0.0",
"remark-preset-lint-recommended": "^3.0.3"
},
"keywords": [
"sveltemantic",
"svelte",
"fomantic-ui",
"bindings",
"components",
"widgets"
]
}