-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.51 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react-ace",
"version": "10.1.0",
"description": "A react component for Ace Editor",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prettier": "prettier --write \"src/**\" \"example/*.js\"",
"clean": "rimraf lib dist",
"lint": "tslint src/*",
"build:lib": "tsc",
"build:umd": "webpack ./src/index.ts -o dist/react-ace.js --config webpack.config.development.js",
"build:umd:min": "webpack ./src/index.ts -o dist/react-ace.min.js --config webpack.config.production.js",
"example": "webpack-dev-server --config webpack.config.example.js",
"build:example": "webpack --config webpack.config.example.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"check": "npm run lint",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"prepublishOnly": "npm run clean && npm run build",
"test": "_mocha --require ts-node/register --require @babel/register --require tests/setup.js tests/src/*.spec.js --exit",
"coverage": "nyc npm run test",
"prepare": "npm run build:lib"
},
"author": "James Hrisho",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"@types/chai": "^4.2.22",
"@types/enzyme": "^3.10.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/lodash": "^4.14.176",
"@types/mocha": "^10.0.0",
"@types/node": "^15.14.9",
"@types/prop-types": "^15.7.4",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/sinon": "^10.0.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.0.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"husky": "^8.0.0",
"jsdom": "20.0.2",
"minimist": ">=1.2.5",
"mocha": "10.1.0",
"node-forge": ">=0.10.0",
"nyc": "15.1.0",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.14.0",
"rimraf": "3.0.2",
"sinon": "14.0.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.1",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0",
"typescript": "^4.4.4",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1"
},
"keywords": [
"ace",
"ace editor",
"react-component",
"react"
],
"dependencies": {
"ace-builds": "^1.4.14",
"diff-match-patch": "^1.0.5",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.7.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"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",
".tsx",
".ts"
],
"reporter": [
"lcov",
"text-lcov",
"text",
"html"
]
},
"repository": {
"type": "git",
"url": "http://github.com/securingsincity/react-ace.git"
},
"prettier": {
"singleQuote": false,
"trailingComma": "none",
"arrowParens": "avoid"
}
}