-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "textarea-markdown",
"version": "1.6.1",
"description": "Make textarea a markdown editor.",
"main": "lib/textarea-markdown.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"build": "babel src/textarea-markdown.js --out-file lib/textarea-markdown.js",
"watch": "babel -w src/textarea-markdown.js --out-file lib/textarea-markdown.js"
},
"keywords": [
"markdown"
],
"author": "Masaki Komagata",
"repository": {
"type": "git",
"url": "git+https://github.com/komagata/textarea-markdown.git"
},
"license": "ISC",
"dependencies": {
"file-type": "^16.5.4",
"filesize": "^10.0.5",
"markdown-it": "^12.3.2",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^9.1.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"import": "0.0.6",
"prettier": "^2.8.4",
"webpack": "^5.74.0",
"webpack-dev-server": "^4.11.1"
}
}