forked from securingsincity/react-ace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.02 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
{
"name": "react-ace-cdn",
"version": "2.0.0",
"description": "A react component for Ace Editor",
"main": "lib/ace.js",
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint .",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack --mode development ./src/ace.js -o dist --output-filename react-ace.js",
"build:umd:min": "webpack --mode production ./src/ace.js -o dist --output-filename react-ace.min.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",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
"test": "mocha test/**/*.spec.js",
"coverage": "nyc npm run test"
},
"author": "Ambassify",
"license": "MIT",
"devDependencies": {
"@ambassify/browserslist-config": "^1.0.1",
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/register": "^7.22.15",
"babel-loader": "^9.1.3",
"chai": "^3.5.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "^8.49.0",
"eslint-config-ambassify": "^3.0.2",
"eslint-plugin-react": "^7.33.2",
"jest": "^0.1.37",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"keywords": [
"ace",
"ace editor",
"react-component",
"react"
],
"dependencies": {
"lodash.isequal": "^4.1.1"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">= 15"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"node_modules"
],
"extension": [
".js",
".jsx"
],
"reporter": [
"lcov",
"text",
"html"
]
},
"repository": {
"type": "git",
"url": "http://github.com/ambassify/react-ace-cdn.git"
}
}