-
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) · 1016 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1016 Bytes
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": "interop-fable-rust",
"version": "0.0.1",
"description": "JavaScrip Interop between F# (Fable) and Rust (through Emscripten)",
"repository": {
"type": "git",
"url": "https://github.com/hsharpsoftware/interop-fable-rust.git"
},
"license": "Apache-2.0",
"author": "David Podhola",
"keywords": [
"interop",
"rust",
"fable"
],
"homepage": "https://github.com/hsharpsoftware/interop-fable-rust",
"engines": {
"fable": "^0.7.49"
},
"dependencies": {
"core-js": "^2.4.1",
"fable-core": "^0.7.28",
"fable-react": "^0.8.6",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.24.0",
"fable-compiler": "^0.7.49",
"fable-powerpack": "^0.0.19",
"source-map-loader": "^0.1.5",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.5"
},
"scripts": {
"build": "fable",
"watch": "fable -w --target watch"
}
}