forked from securingsincity/react-ace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "react-ace",
"version": "3.6.0",
"description": "A react component for Ace Editor",
"main": "lib/ace.js",
"scripts": {
"clean": "rimraf lib dist",
"lint": "node_modules/.bin/eslint src/ace.jsx",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/ace.jsx dist/react-ace.js --config webpack.config.development.js",
"build:umd:min": "webpack src/ace.jsx dist/react-ace.min.js --config webpack.config.production.js",
"build:example": "cd example && npm install",
"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": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"author": "James Hrisho",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.5",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.13.1",
"jest": "^0.1.37",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
},
"keywords": [
"ace",
"ace editor",
"react-component",
"react",
"brace"
],
"dependencies": {
"brace": "^0.8.0",
"lodash.isequal": "^4.1.1"
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.1"
},
"repository": {
"type": "git",
"url": "http://github.com/securingsincity/react-ace.git"
}
}