-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"name": "codeui-js",
"version": "1.1.0",
"description": "A full-featured node package providing code editor ui to be embedded in webpages/webapps.",
"main": "./src/index.js",
"type": "module",
"private": false,
"homepage": "https://github.com/himanshusandha/codeui-js",
"repository": {
"type": "git",
"url": "https://github.com/himanshusandha/codeui-js.git"
},
"dependencies": {
"react": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-react": "^7.12.5"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"scripts": {
"compile": "rm -rf dist && mkdir dist && babel ./src -d dist/src --copy-files && cp LICENSE package.json README.md ./dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Javascript",
"CSS",
"react",
"react-native",
"editor",
"highlighter",
"color"
],
"author": "Himanshu Sandha <himanshupatelj007@gmail.com>",
"license": "MIT"
}