-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 KB
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
{
"name": "@smallstack/markdown-component",
"version": "0.1.3",
"description": "Markdown Component for the smallstack framework",
"author": "smallstack GmbH",
"main": "./dist/bundle/index.umd.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"compile": "tsc && rollup -c",
"bundle": "npm run compile",
"copyhtml": "copyfiles -e \"dist/**/*\" \"**/*.html\" ./dist"
},
"files": [
"dist"
],
"keywords": [
"smallstack",
"framework",
"markdown",
"component"
],
"smallstack": {
"component": {
"nativescript": {
"entrypoint": "./dist/bundle/index.umd.js"
},
"web": {
"entrypoint": "./dist/bundle/index.umd.js"
}
}
},
"dependencies": {
"@smallstack/core-client": "*",
"@smallstack/core-common": "*",
"@smallstack/nativescript": "*",
"marked": "^0.3.6",
"underscore": "^1.8.3"
},
"devDependencies": {
"rimraf": "^2.6.1",
"rollup": "^0.45.1",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"typescript": "^2.4.1"
}
}