-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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": "@outsystems/react-simple-code-editor",
"version": "0.9.5-os6",
"description": "A fork of react-simple-code-editor to generate AMD module",
"keywords": [
"code",
"editor",
"react"
],
"scripts": {
"lint": "eslint .",
"flow": "flow",
"build": "babel src --out-dir lib --ignore '**/__tests__/**' --source-maps && flow-copy-source -i '**/__tests__/**' src lib",
"prebuild": "del-cli lib/",
"prepare": "yarn build",
"example": "parcel example/index.html",
"gh-pages": "git branch -D gh-pages; git checkout -b gh-pages && rm -rf dist/ && parcel build example/App.js && git add -f dist/ && git commit -nm 'Publish website' && git push -fu origin gh-pages; git checkout @{-1}",
"release": "release-it"
},
"husky": {
"hooks": {
}
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "index.d.ts",
"files": [
"lib/",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OutSystems/react-simple-code-editor"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/)",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"conventional-changelog-cli": "^2.0.12",
"dedent": "^0.7.0",
"del-cli": "^1.1.0",
"eslint": "^5.8.0",
"eslint-config-satya164": "^2.0.1",
"flow-bin": "^0.85.0",
"flow-copy-source": "^2.0.2",
"husky": "^1.1.3",
"parcel-bundler": "^1.10.3",
"prettier": "^1.14.3",
"prismjs": "^1.15.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"release-it": "^10.3.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}