forked from livingdocsIO/editable.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@livingdocs/editable.js",
"description": "Friendly contenteditable API",
"version": "0.0.0-development",
"dependencies": {
"@babel/runtime": "^7.13.17",
"bowser": "2.11.0",
"lodash-es": "^4.17.21",
"rangy": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@esm-bundle/chai": "^4.3.4-fix.0",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.0.0",
"css-loader": "^5.2.4",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"font-awesome": "^4.7.0",
"gh-pages": "^3.1.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"mocha": "^9.0.3",
"normalize.css": "^8.0.1",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-transition-group": "^4.4.1",
"rimraf": "^3.0.2",
"sinon": "^10.0.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.0.0-beta.3"
},
"engines": {
"node": ">=12"
},
"files": [
"src",
"lib",
"dist"
],
"keywords": [
"contenteditable",
"editable"
],
"license": "MIT",
"module": "src/core.js",
"repository": {
"type": "git",
"url": "https://github.com/livingdocsIO/editable.js.git"
},
"scripts": {
"start": "WEBPACK_DEV=true BUILD_DOCS=true webpack serve",
"build:dist": "rimraf ./coverage && BUILD_DIST=true webpack",
"build:docs": "rimraf ./examples/dist && BUILD_DOCS=true webpack",
"build": "npm run build:dist -s && npm run build:docs -s",
"test:ci": "npm run test:karma -s",
"test": "npm run build -s && npm run test:karma -s",
"posttest": "npm run lint -s",
"test:all": "npm run test:karma -s -- --browsers Chrome,Firefox,Safari",
"test:karma": "karma start",
"test:watch": "npm run test:karma -s -- --single-run false",
"lint": "eslint --ignore-path .gitignore ."
},
"release": {
"extends": "@livingdocs/semantic-release-presets/npm-github-verify"
}
}