-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 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
69
70
{
"name": "typester-editor",
"version": "0.0.3",
"description": "A simple to use wysiwyg text editor inspired by Medium and Medium Editor that gives you clean and predictable html from your user's input.",
"repository": {
"type": "git",
"url": "https://github.com/typecode/typester"
},
"homepage": "https://typecode.github.io/typester/",
"keywords": [
"wysiwyg",
"typester",
"rich text editor",
"typester-editor",
"medium",
"medium-editor",
"wysiwyg-editor",
"html editor",
"html text editor",
"contenteditable"
],
"main": "build/js/typester.js",
"scripts": {
"test": "yarn test_unit && yarn test_e2e",
"test_unit": "./node_modules/karma/bin/karma start karma.conf.js",
"test_e2e": "concurrently \"yarn dev-server\" \"cypress run\"",
"build": "webpack --config webpack.config.js",
"build_prod": "BUILD=production npm run build",
"watch": "./node_modules/.bin/watch \"npm run build\" src/",
"docs": "./node_modules/.bin/jsdoc -c .jsdoc.json",
"docs_watch": "./node_modules/.bin/watch \"yarn docs\" src/ docs/src/",
"docs_server": "cd ./docs && webpack-dev-server --config webpack.config.js",
"publish": "npm publish",
"dev-server": "webpack-dev-server",
"cypress:open": "cypress open"
},
"author": "Fred Every <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typecode/typester/issues"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.2",
"concurrently": "^4.1.0",
"css-loader": "^2.1.0",
"cypress": "^3.3.1",
"handlebars": "^4.1.2",
"handlebars-loader": "^1.7.1",
"jsdoc": "^3.6.2",
"karma": "^4.1.0",
"karma-jasmine": "^2.0.1",
"karma-jquery": "^0.2.4",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.5",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"watch": "^1.0.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"dompurify": "^1.0.9"
}
}