-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "reason-tools",
"version": "0.3.2",
"description": "Adds Reason to the browser",
"repository": {
"type": "git",
"url": "https://github.com/reasonml/reason-tools.git"
},
"author": "rickyvetter",
"license": "MIT",
"homepage": "https://github.com/reasonml/reason-tools",
"keywords": [
"reason",
"reasonml",
"ocaml",
"extension",
"browser",
"chrome"
],
"scripts": {
"build:self": "bsb -make-world",
"clean": "bsb -clean-world",
"build:js": "webpack",
"build": "npm run build:self && npm run build:js",
"build:prod": "npm run build:self && webpack -p --config ./webpack.production.config.js",
"watch:js": "webpack -w",
"watch:screen": "screen -c .screenrc",
"test": "exit 0"
},
"dependencies": {
"codemirror": "^5.34.0",
"highlight.js": "^9.8.0",
"react": "^16.0.0",
"react-codemirror2": "^4.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.0.0",
"reason-react": "^0.3.0"
},
"devDependencies": {
"bs-platform": "^2.2.1",
"bs-result": "^1.1.0",
"chrome-store-api": "^1.0.5",
"file-loader": "^1.1.5",
"generate-json-webpack-plugin": "^0.2.1",
"webpack": "^2.4.1",
"zip-webpack-plugin": "^2.0.0"
}
}