-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathpackage.json
68 lines (68 loc) · 2.18 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
{
"name": "smarteditor2",
"version": "2.10.1-alpha.0",
"description": "WYSIWYG HTML text editor",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"codecov": "jest --coverage && codecov",
"lint": "eslint -f table ./workspace",
"docs:clean": "rm -rf build/docs",
"docs:serve": "gitbook --port 3000 serve ./workspace/docs/user_guide ./build/docs/user_guide",
"docs:build": "gitbook build ./workspace/docs/user_guide ./build/docs/user_guide",
"docs:publish": "gh-pages -d ./build/docs/user_guide -e ./user_guide -m 'update user_guide'",
"docs:deploy": "npm run docs:build && npm run docs:publish",
"start": "webpack-dev-server --open --hot",
"build": "webpack --env.production",
"preversion": "npm test",
"postversion": "git push --follow-tags && npm publish",
"prepublishOnly": "npm run build",
"postpublish": "npm pack",
"deploy": "npm version patch",
"postdeploy": "gh-pages -d ./dist -e ./demo -m 'update demo'",
"deploy:dev": "npm publish --tag dev"
},
"keywords": [
"javascript",
"WYSIWYG",
"editor",
"SmartEditor"
],
"homepage": "https://github.com/naver/smarteditor2",
"bugs": {
"url": "https://github.com/naver/smarteditor2/issues"
},
"license": "LGPL-2.1",
"author": {
"name": "NAVER corp.",
"email": "[email protected]"
},
"main": "dist/js/smarteditor2.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/naver/smarteditor2.git"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"eslint": "^6.2.1",
"eslint-plugin-jest": "^22.13.7",
"gh-pages": "^2.0.1",
"gitbook-cli": "^2.3.2",
"jest": "^24.8.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}