forked from securingsincity/react-ace
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 3.09 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-ace-builds",
"version": "7.4.1",
"description": "A react component for Ace Editor",
"main": "lib/index.js",
"types": "types.d.ts",
"scripts": {
"prettier": "prettier --print-width 120 --single-quote --trailing-comma all --write \"src/**\" \"example/*.js\"",
"clean": "rimraf lib",
"lint": "node_modules/.bin/eslint src/*",
"example": "webpack serve --config webpack.config.example.js",
"build:example": "webpack --config webpack.config.example.js --mode=production",
"build": "babel src --out-dir lib",
"check": "npm run lint",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublishOnly": "npm run clean && npm run build",
"test": "mocha --require @babel/register --require tests/setup.js tests/**/*.spec.js --exit",
"coverage": "nyc npm run test",
"prepare": "husky install"
},
"author": "James Hrisho",
"contributors": [
{
"name": "Manuel Baclet",
"email": "[email protected]",
"url": "https://github.com/manubb"
},
{
"name": "Dennis Oelkers",
"email": "[email protected]",
"url": "https://github.com/dennisoelkers"
}
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-loader": "^9.1.2",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^4.1.2",
"sinon": "^15.0.1",
"webpack": "^5.37.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"keywords": [
"ace",
"ace editor",
"react-component",
"react",
"ace-builds"
],
"dependencies": {
"ace-builds": "1.31.1",
"diff-match-patch": "^1.0.5",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0"
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/setup.js",
"node_modules"
],
"extension": [
".js",
".jsx"
],
"reporter": [
"lcov",
"text-lcov",
"text",
"html"
]
},
"repository": {
"type": "git",
"url": "http://github.com/manubb/react-ace-builds.git"
},
"bugs": "https://github.com/manubb/react-ace-builds/issues",
"homepage": "https://github.com/manubb/react-ace-builds#readme"
}