-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 939 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 939 Bytes
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
{
"name": "write-down",
"version": "0.2.0",
"description": "A light weight Markdown Editor",
"module": "dist/esm/index.js",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"predeploy": "npm run build",
"deploy": "gh-pages -d www"
},
"dependencies": {
"undo-manager": "1.0.5"
},
"devDependencies": {
"@stencil/core": "~0.14.1",
"@stencil/sass": "^0.1.1",
"gh-pages": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aarjithn/write-down.git"
},
"author": "Aarjith Nandakumar",
"license": "MIT",
"homepage": "https://github.com/aarjithn/write-down"
}