-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
81 lines (81 loc) · 2.32 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
{
"name": "@livingdocs/editable.js",
"description": "Friendly contenteditable API",
"version": "0.0.0-development",
"dependencies": {
"@babel/runtime": "^7.16.7",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@eslint/compat": "^1.1.0",
"babel-loader": "^9.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^5.0.0",
"css-loader": "^7.0.0",
"eslint": "^9.6.0",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.8.0",
"karma": "^6.3.13",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"mocha": "^10.0.0",
"normalize.css": "^8.0.1",
"prismjs": "^1.26.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-transition-group": "^4.4.2",
"rimraf": "^6.0.0",
"sinon": "^19.0.0",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.68.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^5.0.0"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"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"
},
"release": {
"extends": "@livingdocs/semantic-release-presets/npm-github-verify"
}
}