forked from securingsincity/react-ace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.78 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
{
"name": "react-ace",
"version": "5.4.0",
"description": "A react component for Ace Editor",
"main": "lib/index.js",
"types": "types.d.ts",
"scripts": {
"clean": "rimraf lib dist",
"lint": "node_modules/.bin/eslint src/*",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/react-ace.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js 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",
"postversion": "git push && git push --tags && npm run clean",
"prepublishOnly": "npm run clean && npm run build",
"test": "mocha --compilers js:babel-core/register --require tests/setup.js --recursive tests/**/*.spec.js",
"coverage": "nyc npm run test"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
],
"plugins": [
"transform-object-rest-spread"
]
},
"author": "James Hrisho",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "4.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "7.4.0",
"jsdom": "^11.0.0",
"mocha": "3.5.3",
"nyc": "11.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "2.6.2",
"sinon": "4.0.1",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.3"
},
"keywords": [
"ace",
"ace editor",
"react-component",
"react",
"brace"
],
"dependencies": {
"brace": "^0.10.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.1.1",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0",
"react-dom": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.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/securingsincity/react-ace.git"
}
}